diff options
author | Camil Staps | 2015-12-04 17:05:49 +0100 |
---|---|---|
committer | Camil Staps | 2015-12-04 17:05:49 +0100 |
commit | 91fd7db456002896efccd3840e1a83b0f93edbd8 (patch) | |
tree | 7f89dbf40a26aea917e101ca255a768ccf44513f /minctest.c | |
parent | Timing (diff) |
Fix reseting terminal colour
Diffstat (limited to 'minctest.c')
-rw-r--r-- | minctest.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -68,7 +68,7 @@ void test_true(tester* tester, bool check, const char* text) { if (text != NULL) printf(": %s", text); printf(" [%.3fs]", ((float) end.tv_usec - tester->start_last_test.tv_usec) / 1000); - printf("\n" RESET); + printf(RESET "\n"); } *(check ? &tester->passed : &tester->failed) += 1; |