(task_file_transfer.c) Show nbio_open() error

This commit is contained in:
Higor Eurípedes 2015-12-07 11:54:58 -03:00
parent b7982d9662
commit 45f85322cb
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
*/ */
#include <string.h> #include <string.h>
#include <errno.h>
#include <file/nbio.h> #include <file/nbio.h>
#include <formats/image.h> #include <formats/image.h>
#include <formats/rpng.h> #include <formats/rpng.h>
@ -325,7 +325,7 @@ bool rarch_task_push_image_load(const char *fullpath, const char *type, rarch_ta
if (!handle) if (!handle)
{ {
RARCH_ERR("Could not create new file loading handle.\n"); RARCH_ERR("[image load] Failed to open '%s': %s.\n", fullpath, strerror(errno));
return false; return false;
} }