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

Commit 21ee78b3 authored by San Mehat's avatar San Mehat Committed by Android Git Automerger
Browse files

am 7b16834a: Merge change Iaf686344 into eclair

Merge commit '7b16834a' into eclair-mr2

* commit '7b16834a':
  dumpstate: Display mtime instead of ctime
parents 0200394a 7b16834a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -340,7 +340,7 @@ static void dump_kernel_log(const char *path, const char *title)
        if (stat(path, &sbuf) < 0)
            printf("%s: stat failed (%s)\n", path, strerror(errno));
        else
            printf("Harvested %s", ctime(&sbuf.st_ctime));
            printf("Harvested %s", ctime(&sbuf.st_mtime));
    
        DUMP(path);
    }