diff options
author | Stef Walter <stefw@gnome.org> | 2013-10-15 15:42:23 +0200 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2013-10-15 15:42:23 +0200 |
commit | 2ec2e06691b0e99815b9a13a8682eda90d3ffaf9 (patch) | |
tree | fb046b7b3f4c6afd35586c97fa73202bd99d1122 | |
parent | 0a82e3357c9fd17479d2a614dc64594b3349d138 (diff) |
daemon: Add new line at the end of startup messages
-rw-r--r-- | daemon/gkd-main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/daemon/gkd-main.c b/daemon/gkd-main.c index d1937275..6eb9bb95 100644 --- a/daemon/gkd-main.c +++ b/daemon/gkd-main.c @@ -157,7 +157,7 @@ parse_arguments (int *argc, char** argv[]) g_option_context_add_main_entries (context, option_entries, GETTEXT_PACKAGE); if (!g_option_context_parse (context, argc, argv, &err)) { - g_printerr ("gnome-keyring-daemon: %s", egg_error_message (err)); + g_printerr ("gnome-keyring-daemon: %s\n", egg_error_message (err)); g_clear_error (&err); } @@ -170,17 +170,17 @@ parse_arguments (int *argc, char** argv[]) /* Check the arguments */ if (run_for_login && run_for_start) { - g_printerr ("gnome-keyring-daemon: The --start option is incompatible with --login"); + g_printerr ("gnome-keyring-daemon: The --start option is incompatible with --login\n"); run_for_login = FALSE; } if (run_for_login && run_for_replace) { - g_printerr ("gnome-keyring-daemon: The --replace option is incompatible with --login"); + g_printerr ("gnome-keyring-daemon: The --replace option is incompatible with --login\n"); run_for_login = FALSE; } if (run_for_start && run_for_replace) { - g_printerr ("gnome-keyring-daemon: The --replace option is incompatible with --start"); + g_printerr ("gnome-keyring-daemon: The --replace option is incompatible with --start\n"); run_for_start = FALSE; } |