Add missing arg to debug message

BUG=none
BRANCH=all
TEST=none

Change-Id: Ic7b318fbc05a2b25f4923d08381186c8b37a5999
Signed-off-by: Bill Richardson <wfrichar@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/475117
Reviewed-by: Randall Spangler <rspangler@chromium.org>
This commit is contained in:
Bill Richardson
2017-04-12 09:05:43 -07:00
committed by chrome-bot
parent fa0f483782
commit 748af73c67

View File

@@ -197,7 +197,7 @@ static uint8_t *ReadOldKPartFromFileOrDie(const char *filename,
}
Debug("%s size is 0x%x\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");