seed r625 - trunk/libseed
- From: hortont svn gnome org
- To: svn-commits-list gnome org
- Subject: seed r625 - trunk/libseed
- Date: Thu, 1 Jan 2009 23:42:27 +0000 (UTC)
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]