summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/common/Test.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common/Test.h b/lib/common/Test.h
index 5ac0d8ed..2e4eb6b5 100644
--- a/lib/common/Test.h
+++ b/lib/common/Test.h
@@ -41,7 +41,7 @@ extern std::string bbackupd_args, bbstored_args, bbackupquery_args, test_args;
first_fail_line = __LINE__; \
} \
failures++; \
- printf("FAILURE: " msg " at " __FILE__ "(%d)\n", __LINE__); \
+ printf("FAILURE: %s at " __FILE__ ":%d\n", msg, __LINE__); \
}
#define TEST_ABORT_WITH_MESSAGE(msg) {TEST_FAIL_WITH_MESSAGE(msg); return 1;}