From f544b33badc5c89d0e3b5382c70729630c4cffe1 Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Thu, 20 Oct 2005 08:55:46 +0000 Subject: 2005-10-20 Christophe Fergeau * 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 --- ChangeLog | 4 ++++ tests/test-covers.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 349aa3a..5cddae5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-10-20 Christophe Fergeau + + * tests/test-covers.c: (save_song_thumbnails): fix warning on amd64 + 2005-10-19 Jorg Schuler * configure.ac: print warning and hint if ./mkinstalldirs is not 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) { -- cgit