Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit adc63a09 authored by Elliott Hughes's avatar Elliott Hughes Committed by android-build-merger
Browse files

Merge "fastboot: fix log print type mismatch" am: a1e27d34

am: da2f629b

Change-Id: Id62dbc92bccf7088d1358831fb0e6381847d9c79
parents 85854314 da2f629b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {