fastboot: fix log print type mismatch
Test: mma -j8 Change-Id: I8b4373f4a044b802fc9f1dd4f998e880f7843b4a
This commit is contained in:
parent
01ccde321f
commit
e69917c59c
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue