diff options
Diffstat (limited to 'Tests/CTestTest/SmallAndFast/intentional_compile_warning.cxx')
-rw-r--r-- | Tests/CTestTest/SmallAndFast/intentional_compile_warning.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/CTestTest/SmallAndFast/intentional_compile_warning.cxx b/Tests/CTestTest/SmallAndFast/intentional_compile_warning.cxx index 8ea5e404f7..d2396b70e5 100644 --- a/Tests/CTestTest/SmallAndFast/intentional_compile_warning.cxx +++ b/Tests/CTestTest/SmallAndFast/intentional_compile_warning.cxx @@ -2,9 +2,9 @@ int main(int argc, const char* argv[]) { - unsigned int i = 0; // "i<argc" should produce a "signed/unsigned comparison" warning - for (; i<argc; ++i) - { + unsigned int i = + 0; // "i<argc" should produce a "signed/unsigned comparison" warning + for (; i < argc; ++i) { fprintf(stdout, "%s\n", argv[i]); } return 0; |