From: Andre Noll Date: Sat, 3 Oct 2015 21:38:08 +0000 (+0000) Subject: fade: Add missing line break for log message. X-Git-Tag: v0.5.6~97 X-Git-Url: http://git.tuebingen.mpg.de/?a=commitdiff_plain;h=7a666220312b4e03b5274bc9dd8572adaa197c2b;p=paraslash.git fade: Add missing line break for log message. Fixes broken log output which looked like this: 21:33:48 21:33:48 sweet_dreams: waketime: 6:33client_cmd: /usr/local/bin/para_client stop --- diff --git a/fade.c b/fade.c index a42d386d..e05e3173 100644 --- a/fade.c +++ b/fade.c @@ -203,7 +203,7 @@ static int sweet_dreams(struct mixer *m, struct mixer_handle *h) tm = localtime(&t1); } wake_time_epoch = mktime(tm); - PARA_INFO_LOG("waketime: %u:%02u", tm->tm_hour, tm->tm_min); + PARA_INFO_LOG("waketime: %u:%02u\n", tm->tm_hour, tm->tm_min); client_cmd("stop"); sleep(1); if (fot) {