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

Commit 32e803a4 authored by Ethan Yonker's avatar Ethan Yonker
Browse files

Fix compile error in bootloader_message_twrp on 6.0 tree

Change-Id: Ifcfff60fab1cd73b524cd521a7094c344f8e9e1d
parent b4c35913
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -341,7 +341,7 @@ get_args(int *argc, char ***argv) {
                (*argv)[*argc] = strdup(arg);
            }
            printf("Got arguments from boot message\n");
        } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
        } else if (boot.recovery[0] != 0 && boot.recovery[0] != (char)255) {
            printf("Bad boot message\n\"%.20s\"\n", boot.recovery);
        }
    }