gnome-applets r10608 - in trunk/trashapplet: . src



Author: kmaraas
Date: Sat Feb  2 14:38:42 2008
New Revision: 10608
URL: http://svn.gnome.org/viewvc/gnome-applets?rev=10608&view=rev

Log:
2008-02-02  Kjartan Maraas  <kmaraas gnome org>

	* src/xstuff.c: (get_typed_property_data): The previous
	commit broke the build. Fix from Simon Holm ThÃgersen.
	Closes bug #513611.

Modified:
   trunk/trashapplet/ChangeLog
   trunk/trashapplet/src/xstuff.c

Modified: trunk/trashapplet/src/xstuff.c
==============================================================================
--- trunk/trashapplet/src/xstuff.c	(original)
+++ trunk/trashapplet/src/xstuff.c	Sat Feb  2 14:38:42 2008
@@ -90,19 +90,19 @@
       requested_type != AnyPropertyType &&
       requested_type != type_returned)
     {
-      g_warning (G_STRFUNC "(): Property has wrong type, probably on crack");
+      g_warning ("%s(): Property has wrong type, probably on crack", G_STRFUNC);
       abort++;
     }
   if (!abort && bytes_after_return)
     {
-      g_warning (G_STRFUNC "(): Eeek, property has more than %u bytes, stored on harddisk?",
-		 prop_buffer_lengh);
+      g_warning ("%s(): Eeek, property has more than %u bytes, stored on harddisk?",
+		 G_STRFUNC, prop_buffer_lengh);
       abort++;
     }
   if (!abort && expected_format && expected_format != format_returned)
     {
-      g_warning (G_STRFUNC "(): Expected format (%u) unmatched (%d), programmer was drunk?",
-		 expected_format, format_returned);
+      g_warning ("%s(): Expected format (%u) unmatched (%d), programmer was drunk?",
+		 G_STRFUNC, expected_format, format_returned);
       abort++;
     }
   if (!abort && prop_data && nitems_return && format_returned)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]