aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJinguang Dong <dongjinguang@huawei.com>2017-04-12 19:05:42 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-04-12 19:05:42 +0000
commite9cca4b47c53b1fd3537b740aae260052bccf51c (patch)
tree3a72137b7ce3e8a6ec53174ee6e52dc6bf756cf2
parent61f821371a61f0cb0f5bf206d11248a259eff736 (diff)
parent3268d796dfa569a8c18621438d9dd059d255f493 (diff)
downloadvboot_reference-e9cca4b47c53b1fd3537b740aae260052bccf51c.tar.gz
Fix debug info parameter error
am: 3268d796df Change-Id: I7b1013d0095e7e1b499c36669a4542cea333b656
-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");