seed r625 - trunk/libseed



Author: hortont
Date: Thu Jan  1 23:42:26 2009
New Revision: 625
URL: http://svn.gnome.org/viewvc/seed?rev=625&view=rev

Log:
Hopefully final 64-bit build fixes.


Modified:
   trunk/libseed/seed-gtype.c

Modified: trunk/libseed/seed-gtype.c
==============================================================================
--- trunk/libseed/seed-gtype.c	(original)
+++ trunk/libseed/seed-gtype.c	Thu Jan  1 23:42:26 2009
@@ -211,7 +211,7 @@
 	{
 		gchar *mes =
 			g_strdup_printf("Property installation expected 1 argument",
-							" got %d \n", argumentCount);
+							" got %d \n", (unsigned int) argumentCount);
 		seed_make_exception(ctx, exception, "ArgumentError", mes);
 		g_free(mes);
 
@@ -263,7 +263,7 @@
 	if (argumentCount != 1)
 	{
 		gchar *mes = g_strdup_printf("Signal constructor expected 1 argument",
-									 " got %d \n", argumentCount);
+									 " got %d \n", (unsigned int) argumentCount);
 		seed_make_exception(ctx, exception, "ArgumentError", mes);
 		g_free(mes);
 		return (JSObjectRef) JSValueMakeNull(ctx);
@@ -505,7 +505,7 @@
 		gchar *mes =
 			g_strdup_printf("GType constructor expected 1 "
 							"argument, got %d \n",
-							argumentCount);
+							(unsigned int) argumentCount);
 		seed_make_exception(ctx, exception, "ArgumentError", mes);
 		g_free(mes);
 		return (JSObjectRef) JSValueMakeNull(ctx);



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