r15714 - gnucash/trunk/src/gnome - Another 64 bit fix.

David Hampton hampton at cvs.gnucash.org
Tue Mar 13 22:21:08 EDT 2007


Author: hampton
Date: 2007-03-13 22:21:07 -0400 (Tue, 13 Mar 2007)
New Revision: 15714
Trac: http://svn.gnucash.org/trac/changeset/15714

Modified:
   gnucash/trunk/src/gnome/dialog-print-check.c
Log:
Another 64 bit fix.

Modified: gnucash/trunk/src/gnome/dialog-print-check.c
===================================================================
--- gnucash/trunk/src/gnome/dialog-print-check.c	2007-03-14 01:00:06 UTC (rev 15713)
+++ gnucash/trunk/src/gnome/dialog-print-check.c	2007-03-14 02:21:07 UTC (rev 15714)
@@ -437,7 +437,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 %zd; values: %s",
                 file, KF_GROUP_ITEMS, key, dd_len, value);
         g_free(value);
 
@@ -714,7 +714,7 @@
                                     &dd_len, &error);
     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 %zd; values: %s",
                 file, KF_GROUP_TOP, KF_KEY_TRANSLATION, dd_len, value);
         g_free(value);
 



More information about the gnucash-changes mailing list