From: Timo Kokkonen Date: Thu, 16 Jan 2014 20:14:31 +0000 (+0200) Subject: main.c: Add missing endline to debug print X-Git-Url: http://git.itanic.dy.fi/?p=log-plotter;a=commitdiff_plain;h=cd226107185788184dad4d2063f88010536bab82 main.c: Add missing endline to debug print Avoid cluttering the debug output with unterminated lines.. Signed-off-by: Timo Kokkonen --- diff --git a/main.c b/main.c index a730cab..f8272e6 100644 --- a/main.c +++ b/main.c @@ -43,7 +43,7 @@ int main(int argc, char *argv[]) if (plotter_state.old_system_status != plotter_state.system_status) { - pr_debug("Status changing from %s to %s", + pr_debug("Status changing from %s to %s\n", state_to_str(plotter_state.old_system_status), state_to_str(plotter_state.system_status));