diff options
Diffstat (limited to 'Tests/BuildDepends/Project/bar.cxx')
-rw-r--r-- | Tests/BuildDepends/Project/bar.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Tests/BuildDepends/Project/bar.cxx b/Tests/BuildDepends/Project/bar.cxx index c4adbf8..ec7aa65 100644 --- a/Tests/BuildDepends/Project/bar.cxx +++ b/Tests/BuildDepends/Project/bar.cxx @@ -6,11 +6,10 @@ int main(int argc, char** argv) { /* Make sure the noregen header was not regenerated. */ - if(strcmp("foo", noregen_string) != 0) - { + if (strcmp("foo", noregen_string) != 0) { printf("FAILED: noregen.h was regenerated!\n"); return 1; - } + } /* Print out the string that should have been regenerated. */ printf("%s\n", regen_string); |