X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftypesafe_cb%2Ftest%2Fcompile_fail-cast_if_type-promotable.c;h=11d42f4c6b670bb422949dd5045b3d0bb57b950a;hb=7471ecd79174306ee976a4ecc09cc2b9ebb4b501;hp=016d0e2a4f00da90d3b9f9da1fe1f4a6eb3137ec;hpb=3b9d55bd9c9180cc94de96bf60f7bfa5d5f8f2cc;p=ccan diff --git a/ccan/typesafe_cb/test/compile_fail-cast_if_type-promotable.c b/ccan/typesafe_cb/test/compile_fail-cast_if_type-promotable.c index 016d0e2a..11d42f4c 100644 --- a/ccan/typesafe_cb/test/compile_fail-cast_if_type-promotable.c +++ b/ccan/typesafe_cb/test/compile_fail-cast_if_type-promotable.c @@ -6,14 +6,14 @@ static void _set_some_value(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[]) { #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;