summaryrefslogtreecommitdiffstats
path: root/Tests/SubProject/foo
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/SubProject/foo')
-rw-r--r--Tests/SubProject/foo/foo.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/Tests/SubProject/foo/foo.cxx b/Tests/SubProject/foo/foo.cxx
index 68fa363..50cd9e4 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;
}