kov changed libgksu/trunk/ChangeLog, libgksu/trunk/gksu-properties/gksu-properties.c

Gustavo Noronha kov at alioth.debian.org
Mon Jun 29 18:07:15 UTC 2009


Mensagem de log: 
fixed printf format for two error messages

-----


Modified: libgksu/trunk/ChangeLog
===================================================================
--- libgksu/trunk/ChangeLog	2009-06-29 18:03:05 UTC (rev 869)
+++ libgksu/trunk/ChangeLog	2009-06-29 18:07:14 UTC (rev 870)
@@ -1,3 +1,9 @@
+2009-06-29  Gustavo Noronha Silva  <kov at debian.org>
+
+	* gksu-properties/gksu-properties.c:
+	- fixed printf format for two error messages, introduced
+	  by the last change
+
 2009-06-29  Sebastien Bacher <seb128 at ubuntu.com>
 
 	* gksu-properties/gksu-properties.c,

Modified: libgksu/trunk/gksu-properties/gksu-properties.c
===================================================================
--- libgksu/trunk/gksu-properties/gksu-properties.c	2009-06-29 18:03:05 UTC (rev 869)
+++ libgksu/trunk/gksu-properties/gksu-properties.c	2009-06-29 18:07:14 UTC (rev 870)
@@ -234,7 +234,7 @@
       gui = gtk_builder_new ();
       if (!gtk_builder_add_from_file (gui, "gksu-properties.ui", &error))
         {
-          g_warning ("Couldn't load builder file: s", error->message);
+          g_warning ("Couldn't load builder file: %s", error->message);
           g_error_free (error);
         }
     }
@@ -244,7 +244,7 @@
       gui = gtk_builder_new ();
       if (!gtk_builder_add_from_file (gui, PREFIX "/share/" PACKAGE "/gksu-properties.ui", &error))
         {
-          g_warning ("Couldn't load builder file: s", error->message);
+          g_warning ("Couldn't load builder file: %s", error->message);
           g_error_free (error);
         }
     }




More information about the gksu-commits mailing list