Merge "fastboot: fix log print type mismatch" am: a1e27d342e am: da2f629bcd

am: adc63a0973

Change-Id: I4e433c82ad479a5001bef225bc39fed4ec72ee31
This commit is contained in:
Elliott Hughes 2018-01-09 20:22:51 +00:00 committed by android-build-merger
commit 1c9f13f7e5
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) {