From 2ec2e06691b0e99815b9a13a8682eda90d3ffaf9 Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Tue, 15 Oct 2013 15:42:23 +0200 Subject: daemon: Add new line at the end of startup messages --- daemon/gkd-main.c | 8 ++++---- 1 file 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; } -- cgit v1.2.3