diff options
Diffstat (limited to 'Tests/SubProject/foo/foo.cxx')
-rw-r--r-- | Tests/SubProject/foo/foo.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Tests/SubProject/foo/foo.cxx b/Tests/SubProject/foo/foo.cxx index 68fa363760..50cd9e4226 100644 --- a/Tests/SubProject/foo/foo.cxx +++ b/Tests/SubProject/foo/foo.cxx @@ -7,9 +7,8 @@ int main(int ac, char** av) (void)av; int ret = bar(); printf("bar = %d\n", ret); - if(ret == 10) - { + if (ret == 10) { return 0; - } + } return -1; } |