summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--tests/test-covers.c4
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 <teuf@gnome.org>
+
+ * tests/test-covers.c: (save_song_thumbnails): fix warning on amd64
+
2005-10-19 Jorg Schuler <jcsjcs at users.sourceforge.net>
* 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) {