diff options
Diffstat (limited to 'Tests/SimpleInstall/TestSubDir/TSD_utils.cxx')
-rw-r--r-- | Tests/SimpleInstall/TestSubDir/TSD_utils.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx b/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx index 0277f05..0f32894 100644 --- a/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx +++ b/Tests/SimpleInstall/TestSubDir/TSD_utils.cxx @@ -2,9 +2,8 @@ int TSD(const char* foo) { - if ( strcmp(foo, "TEST") == 0 ) - { + if (strcmp(foo, "TEST") == 0) { return 0; - } + } return 1; } |