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

Commit e69917c5 authored by Changrong Jin's avatar Changrong Jin Committed by liuchao
Browse files

fastboot: fix log print type mismatch

Test: mma -j8
Change-Id: I8b4373f4a044b802fc9f1dd4f998e880f7843b4a
parent 01ccde32
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -114,7 +114,7 @@ static Action *queue_action(unsigned op, const char *fmt, ...)


    if (cmdsize >= sizeof(a->cmd)) {
    if (cmdsize >= sizeof(a->cmd)) {
        free(a);
        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) {
    if (action_last) {