Merge "fastboot: fix log print type mismatch"

am: a1e27d342e

Change-Id: Icb0d38f5383529a97bac67bacc33ceafb0b7b7e6
This commit is contained in:
Elliott Hughes 2018-01-09 19:03:59 +00:00 committed by android-build-merger
commit da2f629bcd

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) {