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

Commit 22b0b565 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Code Review
Browse files

Merge "Use complete hardware name without spaces."

parents 19299904 68fec9a7
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -657,7 +657,8 @@ static void get_hardware_name(void)
        if (x) {
            x += 2;
            n = 0;
            while (*x && !isspace(*x)) {
            while (*x && *x != '\n') {
                if (!isspace(*x))
                    hardware[n++] = tolower(*x);
                x++;
                if (n == 31) break;