fastboot: fix log print type mismatch

Test: mma -j8
Change-Id: I8b4373f4a044b802fc9f1dd4f998e880f7843b4a
This commit is contained in:
Changrong Jin 2018-01-09 11:29:54 +08:00 committed by liuchao
parent 01ccde321f
commit e69917c59c
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ static Action *queue_action(unsigned op, const char *fmt, ...)
if (cmdsize >= sizeof(a->cmd)) {
free(a);
die("Command length (%d) exceeds maximum size (%d)", cmdsize, sizeof(a->cmd));
die("Command length (%zu) exceeds maximum size (%zu)", cmdsize, sizeof(a->cmd));
}
if (action_last) {