summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--util/amdfwtool/amdfwtool.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c
index 5bcc0a7d77e9..4f1e8ba0b7fa 100644
--- a/util/amdfwtool/amdfwtool.c
+++ b/util/amdfwtool/amdfwtool.c
@@ -575,7 +575,8 @@ static ssize_t copy_blob(void *dest, const char *src_file, size_t room)
fd = open(src_file, O_RDONLY);
if (fd < 0) {
- printf("Error: %s\n", strerror(errno));
+ printf("Error opening file: %s: %s\n",
+ src_file, strerror(errno));
return -1;
}