diff options
Diffstat (limited to 'test/Sema/conditional.c')
-rw-r--r-- | test/Sema/conditional.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Sema/conditional.c b/test/Sema/conditional.c index c3dbe1321b6b2..3d7bccaf97588 100644 --- a/test/Sema/conditional.c +++ b/test/Sema/conditional.c @@ -6,9 +6,9 @@ void _efree(void *ptr); void free(void *ptr); int _php_stream_free1() { - return (1 ? free(0) : _efree(0)); // expected-error {{incompatible type returning 'void', expected 'int'}} + return (1 ? free(0) : _efree(0)); // expected-error {{returning 'void' from a function with incompatible result type 'int'}} } int _php_stream_free2() { - return (1 ? _efree(0) : free(0)); // expected-error {{incompatible type returning 'void', expected 'int'}} + return (1 ? _efree(0) : free(0)); // expected-error {{returning 'void' from a function with incompatible result type 'int'}} } |