rename functions to more understandable names
[oweals/busybox.git] / libbb / error_msg.c
index a8ed4bf8e55409c0f5401be0210b522c6988ebdf..b2141f3a202dd360b503decab5f4c7134dfd8083 100644 (file)
@@ -18,7 +18,6 @@ void bb_error_msg(const char *s, ...)
        va_list p;
 
        va_start(p, s);
-       bb_verror_msg(s, p);
+       bb_verror_msg(s, p, NULL);
        va_end(p);
-       putc('\n', stderr);
 }