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