From 45f85322cb9caed2f68fee9d57c80ecf44c3f8bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Higor=20Eur=C3=ADpedes?= Date: Mon, 7 Dec 2015 11:54:58 -0300 Subject: [PATCH] (task_file_transfer.c) Show nbio_open() error --- tasks/task_file_transfer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/task_file_transfer.c b/tasks/task_file_transfer.c index 2666b48e37..df5717850b 100644 --- a/tasks/task_file_transfer.c +++ b/tasks/task_file_transfer.c @@ -14,7 +14,7 @@ */ #include - +#include #include #include #include @@ -325,7 +325,7 @@ bool rarch_task_push_image_load(const char *fullpath, const char *type, rarch_ta 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; }