summary refs log tree commit diff
path: root/bin/1sh/test.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-06-07 16:30:34 -0400
committerJune McEnroe <june@causal.agency>2020-06-08 16:46:02 -0400
commitfee59c2271f1d403238ca7da908a537c53a5e264 (patch)
tree05c2732832a62d4c2c757a1648e352e3797a2fed /bin/1sh/test.c
parentReplace __dead2 with __attribute__((noreturn)) (diff)
downloadsrc-fee59c2271f1d403238ca7da908a537c53a5e264.tar.gz
src-fee59c2271f1d403238ca7da908a537c53a5e264.zip
Replace __printflike with __attribute__((format(printf, ...)))
sed -E 's/__printf0?like[(]([^,]+), ([^)]+)[)]/__attribute__((format(printf, \1, \2)))/'
Diffstat (limited to 'bin/1sh/test.c')
-rw-r--r--bin/1sh/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/1sh/test.c b/bin/1sh/test.c
index 71c62e11..54c16eef 100644
--- a/bin/1sh/test.c
+++ b/bin/1sh/test.c
@@ -38,7 +38,7 @@
 #else
 #include <locale.h>
 
-static void error(const char *, ...) __attribute__((noreturn)) __printf0like(1, 2);
+static void error(const char *, ...) __attribute__((noreturn)) __attribute__((format(printf, 1, 2)));
 
 static void
 error(const char *msg, ...)