summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorChristophe Fergeau <teuf@gnome.org>2005-10-20 08:55:46 +0000
committerChristophe Fergeau <teuf@gnome.org>2005-10-20 08:55:46 +0000
commite06e4d61cd862bac845723a62aabaaf6418ab8e7 (patch)
treeb469a26f99e0b78c194072565198765d92b66cdb /tests
parent6f86c3abdc37f9244585d8882dc95d874565de95 (diff)
downloadlibgpod-e06e4d61cd862bac845723a62aabaaf6418ab8e7.tar.gz
libgpod-e06e4d61cd862bac845723a62aabaaf6418ab8e7.tar.xz
libgpod-e06e4d61cd862bac845723a62aabaaf6418ab8e7.zip
2005-10-20 Christophe Fergeau <teuf@gnome.org>
* tests/test-covers.c: (save_song_thumbnails): fix warning on amd64 git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1127 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'tests')
-rw-r--r--tests/test-covers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-covers.c b/tests/test-covers.c
index f480b6a..836932e 100644
--- a/tests/test-covers.c
+++ b/tests/test-covers.c
@@ -115,10 +115,10 @@ save_song_thumbnails (Itdb_Track *song)
filename = NULL;
if (image->type == ITDB_IMAGE_FULL_SCREEN) {
- filename = g_strdup_printf ("/tmp/fullsize%016llx.png",
+ filename = g_strdup_printf ("/tmp/fullsize%016"G_GINT64_MODIFIER"x.png",
song->dbid);
} else if (image->type == ITDB_IMAGE_NOW_PLAYING) {
- filename = g_strdup_printf ("/tmp/nowplaying%016llx.png",
+ filename = g_strdup_printf ("/tmp/nowplaying%016"G_GINT64_MODIFIER"x.png",
song->dbid);
}
if (filename != NULL) {