aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJinguang Dong <dongjinguang@huawei.com>2017-04-12 19:17:12 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-04-12 19:17:12 +0000
commit43fa4c3f561c15d3224c06dd93c7c7a672f9f312 (patch)
tree3a72137b7ce3e8a6ec53174ee6e52dc6bf756cf2
parent9871e7b56b648a8a72b48d9f1cdf9e516e619f3a (diff)
parent900cd94ee586f345b12b5252dd3e5a2acb89bc8b (diff)
downloadvboot_reference-43fa4c3f561c15d3224c06dd93c7c7a672f9f312.tar.gz
Fix debug info parameter error am: 3268d796df am: e9cca4b47c
am: 900cd94ee5 Change-Id: Ieaa28e8596f7ea212dc541e0f783f8c2223990a4
-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");