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

Commit 001d3c28 authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am c8cff90d: Merge "Use a named constant rather than a magic number." into jb-mr1-dev

* commit 'c8cff90d':
  Use a named constant rather than a magic number.
parents 41fc5a48 c8cff90d
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;