diff options
Diffstat (limited to 'test/Parser/if-scope-c90.c')
-rw-r--r-- | test/Parser/if-scope-c90.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Parser/if-scope-c90.c b/test/Parser/if-scope-c90.c index fdc75e9f10b0f..53987dccbc37f 100644 --- a/test/Parser/if-scope-c90.c +++ b/test/Parser/if-scope-c90.c @@ -2,7 +2,7 @@ int f (int z) { - if (z > sizeof (enum {a, b})) + if (z > (int) sizeof (enum {a, b})) return a; return b; } |