Fix for x86_64.

* src/engine/qofquerycore.c: Fix for x86_64.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@10281 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins
2004-09-28 22:16:21 +00:00
parent 19582b7146
commit 17f09817c1
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -1,3 +1,7 @@
2004-09-28 Derek Atkins <derek@ihtfp.com>
* src/engine/qofquerycore.c: Fix for x86_64.
2004-09-22 Christian Stimming <stimming@tuhh.de>
* src/import-export/hbci/hbci-interaction.c: Finally fix the HBCI
+1 -1
View File
@@ -859,7 +859,7 @@ int64_to_string (gpointer object, QofParam *getter)
{
gint64 num = ((query_int64_getter)getter->param_getfcn)(object, getter);
return g_strdup_printf (GNC_SCANF_LLD, num);
return g_strdup_printf (GNC_SCANF_LLD, (long long int) num);
}
/* ================================================================ */