]> git.ozlabs.org Git - ccan/blobdiff - ccan/typesafe_cb/test/compile_fail-typesafe_cb_postargs.c
base64: fix for unsigned chars (e.g. ARM).
[ccan] / ccan / typesafe_cb / test / compile_fail-typesafe_cb_postargs.c
index 885a3c551c171123d42301e760e95489a297d95f..2100368f03292e41e94c5624d366f8de91b93e16 100644 (file)
@@ -3,20 +3,24 @@
 
 static void _register_callback(void (*cb)(void *arg, int x), void *arg)
 {
+       (void)cb;
+       (void)arg;
 }
 #define register_callback(cb, arg)                             \
-       _register_callback(typesafe_cb_postargs(void, (cb), (arg), int), (arg))
+       _register_callback(typesafe_cb_postargs(void, void *, (cb), (arg), int), (arg))
 
 static void my_callback(char *p, int x)
 {
+       (void)p;
+       (void)x;
 }
 
-int main(int argc, char *argv[])
+int main(void)
 {
 #ifdef FAIL
        int *p;
 #if !HAVE_TYPEOF||!HAVE_BUILTIN_CHOOSE_EXPR||!HAVE_BUILTIN_TYPES_COMPATIBLE_P
-#error "Unfortunately we don't fail if cast_if_type is a noop."
+#error "Unfortunately we don't fail if typesafe_cb_cast is a noop."
 #endif
 #else
        char *p;