summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjcsjcs <jcsjcs@f01d2545-417e-4e96-918e-98f8d0dbbcb6>2006-10-29 16:17:08 +0000
committerjcsjcs <jcsjcs@f01d2545-417e-4e96-918e-98f8d0dbbcb6>2006-10-29 16:17:08 +0000
commitc934557c6f25b57a47199cfdfd5281a1ad65334b (patch)
tree3648ef978727e7f79b692fbc792f385669c1cd21
parent030e4791ad48e020b3932b2fbe53ea89ec86e43c (diff)
downloadlibgpod-c934557c6f25b57a47199cfdfd5281a1ad65334b.tar.gz
libgpod-c934557c6f25b57a47199cfdfd5281a1ad65334b.tar.xz
libgpod-c934557c6f25b57a47199cfdfd5281a1ad65334b.zip
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
-rw-r--r--src/itdb_photoalbum.c5
1 files 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 <jcsjcs at users sourceforge net>
| 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;
}
}