diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-02-08 15:18:21 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:15:01 +0100 |
commit | d528a2211b58820d23528e1afd187652151f4853 (patch) | |
tree | fcc1d1611f2e5a4e587ef8ff2c11363fea993de9 /cli/mmcli.c | |
parent | 470d9b933ef3a324195b1cd15edd10aba57c564d (diff) |
cli: ensure EOL is added at every error message
Diffstat (limited to 'cli/mmcli.c')
-rw-r--r-- | cli/mmcli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/mmcli.c b/cli/mmcli.c index ff9d6891..33634e66 100644 --- a/cli/mmcli.c +++ b/cli/mmcli.c @@ -69,7 +69,7 @@ signals_handler (int signum) /* Ignore consecutive requests of cancellation */ if (!g_cancellable_is_cancelled (cancellable)) { g_printerr ("%s\n", - "cancelling the operation..."); + "cancelling the operation...\n"); g_cancellable_cancel (cancellable); } return; @@ -78,7 +78,7 @@ signals_handler (int signum) if (loop && g_main_loop_is_running (loop)) { g_printerr ("%s\n", - "cancelling the main loop..."); + "cancelling the main loop...\n"); g_main_loop_quit (loop); } } |