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

Commit 5f87b31d authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Use a named constant rather than a magic number.

Change-Id: I86e8c91c6f5628df3eec38faf28598cc8cef2ea3
parent 6e220a6c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -109,7 +109,8 @@ out_close:

void do_dmesg() {
    printf("------ KERNEL LOG (dmesg) ------\n");
    int size = klogctl(10, NULL, 0); /* Get size of kernel buffer */
    /* Get size of kernel buffer */
    int size = klogctl(KLOG_SIZE_BUFFER, NULL, 0);
    if (size <= 0) {
        printf("Unexpected klogctl return value: %d\n\n", size);
        return;