summaryrefslogtreecommitdiffstats
path: root/src/tests/ipa_timerules-tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/ipa_timerules-tests.c')
-rw-r--r--src/tests/ipa_timerules-tests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/ipa_timerules-tests.c b/src/tests/ipa_timerules-tests.c
index 29fc7e4ac..f9e22fc85 100644
--- a/src/tests/ipa_timerules-tests.c
+++ b/src/tests/ipa_timerules-tests.c
@@ -56,10 +56,10 @@ int str2time_t(const char *fmt, const char *str, time_t *out)
if(!err || err[0] != '\0')
return EINVAL;
- DEBUG(9, ("after strptime: %s", asctime(&stm)));
+ DEBUG(9, ("after strptime: %s\n", asctime(&stm)));
stm.tm_isdst = -1;
*out = mktime(&stm);
- DEBUG(9, ("after mktime: %s", ctime(out)));
+ DEBUG(9, ("after mktime: %s\n", ctime(out)));
return (*out == -1) ? EINVAL : EOK;
}