From 0855f4bf5ef35d615c4508b0fa8ff75a3d63bfff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Sandmann?= Date: Fri, 24 Oct 2008 21:55:11 +0000 Subject: [PATCH] Print a newline after the error message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fri Oct 24 17:55:00 2008 Søren Sandmann * gnome-mouse-properties.c (main): Print a newline after the error message svn path=/trunk/; revision=9104 --- capplets/mouse/ChangeLog | 4 ++++ capplets/mouse/gnome-mouse-properties.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/capplets/mouse/ChangeLog b/capplets/mouse/ChangeLog index e66078922..775bb58b4 100644 --- a/capplets/mouse/ChangeLog +++ b/capplets/mouse/ChangeLog @@ -1,3 +1,7 @@ +Fri Oct 24 17:55:00 2008 Søren Sandmann + + * gnome-mouse-properties.c (main): Print a newline after the error message + Fri Oct 24 17:50:21 2008 Søren Sandmann * gnome-mouse-properties.c (main): Use gtk_init_with_args() diff --git a/capplets/mouse/gnome-mouse-properties.c b/capplets/mouse/gnome-mouse-properties.c index 0e9cf668d..760d4eced 100644 --- a/capplets/mouse/gnome-mouse-properties.c +++ b/capplets/mouse/gnome-mouse-properties.c @@ -448,7 +448,7 @@ main (int argc, char **argv) textdomain (GETTEXT_PACKAGE); if (!gtk_init_with_args (&argc, &argv, _("- GNOME Mouse Preferences"), cap_options, GETTEXT_PACKAGE, &err)) { - g_printerr (err->message); + g_printerr ("%s\n", err->message); return 1; }