Merge "fastboot: fix log print type mismatch"
This commit is contained in:
commit
a1e27d342e
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue