r15552 - gnucash/trunk/lib/libqof/qof - use correct datatype.

Josh Sled jsled at cvs.gnucash.org
Sat Feb 10 11:28:25 EST 2007


Author: jsled
Date: 2007-02-10 11:28:24 -0500 (Sat, 10 Feb 2007)
New Revision: 15552
Trac: http://svn.gnucash.org/trac/changeset/15552

Modified:
   gnucash/trunk/lib/libqof/qof/qoflog.c
Log:
use correct datatype.


Modified: gnucash/trunk/lib/libqof/qof/qoflog.c
===================================================================
--- gnucash/trunk/lib/libqof/qof/qoflog.c	2007-02-10 14:57:33 UTC (rev 15551)
+++ gnucash/trunk/lib/libqof/qof/qoflog.c	2007-02-10 16:28:24 UTC (rev 15552)
@@ -260,7 +260,7 @@
      g_debug("parsing log config from [%s]", filename);
      if (g_key_file_has_group(conf, levels_group))
      {
-          int num_levels;
+          gsize num_levels;
           int key_idx;
           gchar **levels;
 
@@ -285,7 +285,7 @@
 
      if (g_key_file_has_group(conf, levels_group))
      {
-          int num_outputs;
+          gsize num_outputs;
           int output_idx;
           gchar **outputs;
           



More information about the gnucash-changes mailing list