diff options
Diffstat (limited to 'test/Sema/function-ptr.c')
-rw-r--r-- | test/Sema/function-ptr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Sema/function-ptr.c b/test/Sema/function-ptr.c index c1ff8e1..ff85272 100644 --- a/test/Sema/function-ptr.c +++ b/test/Sema/function-ptr.c @@ -3,9 +3,9 @@ typedef int unary_int_func(int arg); unary_int_func *func; unary_int_func *set_func(void *p) { - func = p; // expected-warning {{converts between void* and function pointer}} - p = func; // expected-warning {{converts between void* and function pointer}} + func = p; // expected-warning {{converts between void pointer and function pointer}} + p = func; // expected-warning {{converts between void pointer and function pointer}} - return p; // expected-warning {{converts between void* and function pointer}} + return p; // expected-warning {{converts between void pointer and function pointer}} } |