]> git.ozlabs.org Git - ccan/blobdiff - ccan/typesafe_cb/test/compile_fail-cast_if_type-promotable.c
various: add LICENSE comments.
[ccan] / ccan / typesafe_cb / test / compile_fail-cast_if_type-promotable.c
index a0362485c54320e534002c92273199514bc07aa4..11d42f4c6b670bb422949dd5045b3d0bb57b950a 100644 (file)
@@ -6,17 +6,17 @@ static void _set_some_value(void *val)
 }
 
 #define set_some_value(expr)                                           \
-       _set_some_value(cast_if_type(void *, (expr), (expr), int))
+       _set_some_value(typesafe_cb_cast(void *, long, (expr)))
 
 int main(int argc, char *argv[])
 {
 #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
-       int x = 0;
+       long x = 0;
 #endif
        set_some_value(x);
        return 0;