all repos — slstatus @ 5db729fedbc4b6cb8742c58ff4934afb50732974

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

ram: fixed int overflow on pagetok macro
Tobias Tschinkowitz he4d@posteo.de
Thu, 24 May 2018 12:09:26 +0200
commit

5db729fedbc4b6cb8742c58ff4934afb50732974

parent

f17f39d0a2e2898177dbcf5daf67284956005b9b

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

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

@@ -75,7 +75,7 @@ #include <sys/types.h>

#include <unistd.h> #define LOG1024 10 - #define pagetok(size, pageshift) ((size) << (pageshift - LOG1024)) + #define pagetok(size, pageshift) (size_t)(size << (pageshift - LOG1024)) inline int load_uvmexp(struct uvmexp *uvmexp)