From 8fd1eecb67153590d4c06734d2fac8cef2b32fe0 Mon Sep 17 00:00:00 2001 From: Jorg Schuler Date: Sun, 29 Oct 2006 16:17:08 +0000 Subject: Fix compiler error/warning. Thanks to Todd Zullinger. git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1331 f01d2545-417e-4e96-918e-98f8d0dbbcb6 --- src/itdb_photoalbum.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/itdb_photoalbum.c b/src/itdb_photoalbum.c index 34d811c..be74a28 100644 --- a/src/itdb_photoalbum.c +++ b/src/itdb_photoalbum.c @@ -1,4 +1,4 @@ -/* Time-stamp: <2006-10-29 19:15:33 jcs> +/* Time-stamp: <2006-10-30 01:15:39 jcs> | | Copyright (C) 2002-2006 Jorg Schuler | Part of the gtkpod project. @@ -386,7 +386,8 @@ static Itdb_Artwork *itdb_photodb_add_photo_internal (Itdb_PhotoDB *db, if (g_stat (filename, &statbuf) != 0) { g_set_error (error, 0, -1, - _("Could not access file '%s'. Photo not added.")); + _("Could not access file '%s'. Photo not added."), + filename); return NULL; } } -- cgit