seed r665 - trunk/libseed



Author: hortont
Date: Mon Jan  5 14:23:37 2009
New Revision: 665
URL: http://svn.gnome.org/viewvc/seed?rev=665&view=rev

Log:
64-bit build fix.



Modified:
   trunk/libseed/seed-gtype.c

Modified: trunk/libseed/seed-gtype.c
==============================================================================
--- trunk/libseed/seed-gtype.c	(original)
+++ trunk/libseed/seed-gtype.c	Mon Jan  5 14:23:37 2009
@@ -657,7 +657,7 @@
 	{
 		gchar * mes = g_strdup_printf("ParamSpec.get expected "
 									  "1 argument, got %d",
-									  argumentCount);
+									  (unsigned int) argumentCount);
 		seed_make_exception(ctx, exception, "ArgumentError", mes);
 		g_free(mes);
 		
@@ -692,7 +692,7 @@
 	{
 		gchar * mes = g_strdup_printf("ParamSpec.set expected "
 									  "1 argument, got %d",
-									  argumentCount);
+									  (unsigned int) argumentCount);
 		seed_make_exception(ctx, exception, "ArgumentError", mes);
 		g_free(mes);
 		



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