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

Commit 3889a58b authored by Elliott Hughes's avatar Elliott Hughes Committed by Automerger Merge Worker
Browse files

Merge "Remove stray newline from err() call." into main am: f0063939 am:...

Merge "Remove stray newline from err() call." into main am: f0063939 am: 1d4fc0b9 am: a11fa57b am: d39a2d86

Original change: https://android-review.googlesource.com/c/platform/system/core/+/2746273



Change-Id: I264ca6326d8a5d538aa3f8af86d02fdef7b0b6b6
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 5a659409 d39a2d86
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -111,8 +111,7 @@ static int print_possible_events(int fd, int print_flags)
                break;
            bits_size = res + 16;
            bits = realloc(bits, bits_size * 2);
            if(bits == NULL)
                err(1, "failed to allocate buffer of size %d\n", (int)bits_size);
            if (bits == NULL) err(1, "failed to allocate buffer of size %zd", bits_size);
        }
        res2 = 0;
        switch(i) {