]> git.ozlabs.org Git - ccan/blobdiff - ccan/typesafe_cb/test/compile_fail-cast_if_type-promotable.c
base64: fix for unsigned chars (e.g. ARM).
[ccan] / ccan / typesafe_cb / test / compile_fail-cast_if_type-promotable.c
index 016d0e2a4f00da90d3b9f9da1fe1f4a6eb3137ec..746facaef3ed102989afcc9c7f0a71df063e6fc3 100644 (file)
@@ -3,17 +3,18 @@
 
 static void _set_some_value(void *val)
 {
+       (void)val;
 }
 
 #define set_some_value(expr)                                           \
-       _set_some_value(cast_if_type(void *, (expr), (expr), long))
+       _set_some_value(typesafe_cb_cast(void *, long, (expr)))
 
-int main(int argc, char *argv[])
+int main(void)
 {
 #ifdef FAIL
        bool x = 0;
 #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
        long x = 0;