mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
printf with %zd is not known in mingw gcc 4.4.0 and prevents gnucash from being built with that compiler. Since this is only a debug message, I chose to replace it with %d which should also do the right thing.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19206 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
78f2c9f275
commit
b4981af9e6
@ -951,7 +951,7 @@ format_read_item_placement(const gchar * file,
|
||||
if (error)
|
||||
goto failed;
|
||||
value = doubles_to_string(dd, dd_len);
|
||||
g_debug("Check file %s, group %s, key %s, length %zd; values: %s",
|
||||
g_debug("Check file %s, group %s, key %s, length %d; values: %s",
|
||||
file, KF_GROUP_ITEMS, key, dd_len, value);
|
||||
g_free(value);
|
||||
|
||||
@ -1367,7 +1367,7 @@ format_read_general_info(const gchar * file,
|
||||
if (!error)
|
||||
{
|
||||
value = doubles_to_string(dd, dd_len);
|
||||
g_debug("Check file %s, group %s, key %s, length %zd; values: %s",
|
||||
g_debug("Check file %s, group %s, key %s, length %d; values: %s",
|
||||
file, KF_GROUP_TOP, KF_KEY_TRANSLATION, dd_len, value);
|
||||
g_free(value);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user