From 27326b71197a4f73e422f388d5aa3d1b3ea24bac Mon Sep 17 00:00:00 2001 From: sin Date: Sat, 8 Mar 2014 16:48:28 +0000 Subject: Mark venprintf() as static explicitly, not just in the decl --- util/eprintf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/util/eprintf.c b/util/eprintf.c index 8dda0c8..8da0651 100644 --- a/util/eprintf.c +++ b/util/eprintf.c @@ -4,7 +4,6 @@ #include #include #include - #include "../util.h" static void venprintf(int, const char *, va_list); @@ -29,7 +28,7 @@ enprintf(int status, const char *fmt, ...) va_end(ap); } -void +static void venprintf(int status, const char *fmt, va_list ap) { vfprintf(stderr, fmt, ap); -- cgit v1.2.3-54-g00ecf