diff options
author | Jorg Schuler <jcsjcs@users.sourceforge.net> | 2006-10-29 16:17:08 +0000 |
---|---|---|
committer | Jorg Schuler <jcsjcs@users.sourceforge.net> | 2006-10-29 16:17:08 +0000 |
commit | 8fd1eecb67153590d4c06734d2fac8cef2b32fe0 (patch) | |
tree | 3648ef978727e7f79b692fbc792f385669c1cd21 /src | |
parent | e8ecc3e50afc47952d68ee4655886dc4faca296b (diff) | |
download | libgpod-8fd1eecb67153590d4c06734d2fac8cef2b32fe0.tar.gz libgpod-8fd1eecb67153590d4c06734d2fac8cef2b32fe0.tar.xz libgpod-8fd1eecb67153590d4c06734d2fac8cef2b32fe0.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
Diffstat (limited to 'src')
-rw-r--r-- | src/itdb_photoalbum.c | 5 |
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; } } |