all repos — slstatus @ 54ebd0dabe3594072c1920ecbbebae390aa186ce

my build of slstatus (tools.suckless.org/slstatus/)

uptime: Add missing brace
Aaron Marcher me@drkhsh.at
Wed, 02 May 2018 12:08:54 +0200
commit

54ebd0dabe3594072c1920ecbbebae390aa186ce

parent

34010907a6fdcb2b3fbd09eb06740e5f9f8d1e4f

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M components/uptime.ccomponents/uptime.c

@@ -49,7 +49,7 @@ mib[1] = KERN_BOOTTIME;

size = sizeof(boottime); - if (sysctl(mib, 2, &boottime, &size, NULL, 0) == -1) + if (sysctl(mib, 2, &boottime, &size, NULL, 0) == -1) { fprintf(stderr, "sysctl 'KERN_BOOTTIME': %s\n", strerror(errno)); return NULL; }