Commit 427e1faf059e1405fd093b7ff8f9ce8f5f42048b

Authored by Georg Hopp
1 parent e71b83d7

Fix wrong parenteses in runtest.c

Showing 1 changed file with 1 additions and 1 deletions
@@ -89,7 +89,7 @@ main(int argc, char * argv[]) @@ -89,7 +89,7 @@ main(int argc, char * argv[])
89 if (_setUp && NULL != tearDown) { 89 if (_setUp && NULL != tearDown) {
90 int _tearDown = tearDown(); 90 int _tearDown = tearDown();
91 91
92 - if ((! TEST_OK == _tearDown) && TEST_OK == result) { 92 + if ((!(TEST_OK == _tearDown)) && TEST_OK == result) {
93 result = _tearDown; 93 result = _tearDown;
94 } 94 }
95 } 95 }
Please register or login to post a comment