summaryrefslogtreecommitdiffstats
path: root/src/tests/common_tev.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/common_tev.c')
-rw-r--r--src/tests/common_tev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/common_tev.c b/src/tests/common_tev.c
index 81b97d331..770f97d83 100644
--- a/src/tests/common_tev.c
+++ b/src/tests/common_tev.c
@@ -33,14 +33,14 @@ create_ev_test_ctx(TALLOC_CTX *mem_ctx)
test_ctx = talloc_zero(mem_ctx, struct sss_test_ctx);
if (test_ctx == NULL) {
- DEBUG(SSSDBG_CRIT_FAILURE, ("talloc_zero failed\n"));
+ DEBUG(SSSDBG_CRIT_FAILURE, "talloc_zero failed\n");
goto fail;
}
/* Create an event context */
test_ctx->ev = tevent_context_init(test_ctx);
if (test_ctx->ev == NULL) {
- DEBUG(SSSDBG_CRIT_FAILURE, ("tevent_context_init failed\n"));
+ DEBUG(SSSDBG_CRIT_FAILURE, "tevent_context_init failed\n");
goto fail;
}