diff options
author | kris <kris@FreeBSD.org> | 2002-02-04 01:11:48 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-02-04 01:11:48 +0000 |
commit | 6ca02c89121783d081330d0d34c5cc8ce05c8b57 (patch) | |
tree | 1587933be31e2f67e781f45a912e3fef20c27484 /bin | |
parent | 51396a4bd615e079713881f9cb3a3b2e526aedf4 (diff) | |
download | FreeBSD-src-6ca02c89121783d081330d0d34c5cc8ce05c8b57.zip FreeBSD-src-6ca02c89121783d081330d0d34c5cc8ce05c8b57.tar.gz |
__printflike() should really be __printf0like() since verrx() can
accept a NULL format string.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/test/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/test/test.c b/bin/test/test.c index caeb798..e40af5d 100644 --- a/bin/test/test.c +++ b/bin/test/test.c @@ -35,7 +35,7 @@ static const char rcsid[] = #include <locale.h> static void error(const char *, ...) __attribute__((__noreturn__)) - __printflike(1, 2); + __printf0like(1, 2); static void error(const char *msg, ...) |