Print a newline after the error message

Fri Oct 24 17:55:00 2008  Søren Sandmann  <sandmann@redhat.com>

	* gnome-mouse-properties.c (main): Print a newline after the error message



svn path=/trunk/; revision=9104
This commit is contained in:
Søren Sandmann 2008-10-24 21:55:11 +00:00 committed by Søren Sandmann Pedersen
parent 621d9dcc44
commit 0855f4bf5e
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Fri Oct 24 17:55:00 2008 Søren Sandmann <sandmann@redhat.com>
* gnome-mouse-properties.c (main): Print a newline after the error message
Fri Oct 24 17:50:21 2008 Søren Sandmann <sandmann@redhat.com>
* gnome-mouse-properties.c (main): Use gtk_init_with_args()

View file

@ -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;
}