r19208 - gnucash/trunk/src/gnome - Fix 64-bit compiler error introduced in r19206

Geert Janssens gjanssens at code.gnucash.org
Wed May 26 16:27:08 EDT 2010


Author: gjanssens
Date: 2010-05-26 16:27:08 -0400 (Wed, 26 May 2010)
New Revision: 19208
Trac: http://svn.gnucash.org/trac/changeset/19208

Modified:
   gnucash/trunk/src/gnome/dialog-print-check.c
Log:
Fix 64-bit compiler error introduced in r19206

Modified: gnucash/trunk/src/gnome/dialog-print-check.c
===================================================================
--- gnucash/trunk/src/gnome/dialog-print-check.c	2010-05-25 21:35:50 UTC (rev 19207)
+++ gnucash/trunk/src/gnome/dialog-print-check.c	2010-05-26 20:27:08 UTC (rev 19208)
@@ -951,7 +951,7 @@
         if (error)
             goto failed;
         value = doubles_to_string(dd, dd_len);
-        g_debug("Check file %s, group %s, key %s, length %d; values: %s",
+        g_debug("Check file %s, group %s, key %s, length %"G_GSIZE_FORMAT"; values: %s",
                 file, KF_GROUP_ITEMS, key, dd_len, value);
         g_free(value);
 
@@ -1367,7 +1367,7 @@
     if (!error)
     {
         value = doubles_to_string(dd, dd_len);
-        g_debug("Check file %s, group %s, key %s, length %d; values: %s",
+        g_debug("Check file %s, group %s, key %s, length %"G_GSIZE_FORMAT"; values: %s",
                 file, KF_GROUP_TOP, KF_KEY_TRANSLATION, dd_len, value);
         g_free(value);
 



More information about the gnucash-changes mailing list