seed r665 - trunk/libseed
- From: hortont svn gnome org
- To: svn-commits-list gnome org
- Subject: seed r665 - trunk/libseed
- Date: Mon, 5 Jan 2009 14:23:37 +0000 (UTC)
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]