aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJinguang Dong <dongjinguang@huawei.com>2017-04-12 19:11:44 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-04-12 19:11:44 +0000
commit900cd94ee586f345b12b5252dd3e5a2acb89bc8b (patch)
tree3a72137b7ce3e8a6ec53174ee6e52dc6bf756cf2
parenta505d459484f5d02e61f40bfa935d5c476a2f409 (diff)
parente9cca4b47c53b1fd3537b740aae260052bccf51c (diff)
downloadvboot_reference-900cd94ee586f345b12b5252dd3e5a2acb89bc8b.tar.gz
Fix debug info parameter error am: 3268d796df
am: e9cca4b47c Change-Id: I145f63c3e68408e012d39fe00d1f5e8f1f1cca27
-rw-r--r--futility/cmd_vbutil_kernel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/futility/cmd_vbutil_kernel.c b/futility/cmd_vbutil_kernel.c
index c7b3c78c..a1ac5ab8 100644
--- a/futility/cmd_vbutil_kernel.c
+++ b/futility/cmd_vbutil_kernel.c
@@ -193,7 +193,7 @@ static uint8_t *ReadOldKPartFromFileOrDie(const char *filename,
}
Debug("%s size is 0x%" PRIx64 "\n", filename, file_size);
if (file_size < opt_pad)
- Fatal("%s is too small to be a valid kernel blob\n");
+ Fatal("%s is too small to be a valid kernel blob\n", filename);
Debug("Reading %s\n", filename);
fp = fopen(filename, "rb");