filebrowser, moviebrowser, pictureviewer: clarify error message

Origin commit data
------------------
Branch: ni/coolstream
Commit: 4e1678c2a3
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2015-02-06 (Fri, 06 Feb 2015)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2015-02-06 17:26:20 +01:00
committed by Jacek Jendrzej
parent 13959a5406
commit 896aad4e0a
3 changed files with 3 additions and 3 deletions

View File

@@ -450,7 +450,7 @@ int CPictureViewerGui::show()
pic.Type = tmp.substr(tmp.rfind('.')+1);
struct stat statbuf;
if (stat(pic.Filename.c_str(),&statbuf) != 0)
printf("stat error");
fprintf(stderr, "stat '%s' error: %m\n", pic.Filename.c_str());
pic.Date = statbuf.st_mtime;
playlist.push_back(pic);
}