X-Git-Url: https://git.xinqibao.xyz/slstatus.git/blobdiff_plain/c2492c3f99d9d434a6f935dea8e97fa27cdd2adc..acfa1f50c24add6b9a78d94af21f9350150fb9c2:/components/temperature.c diff --git a/components/temperature.c b/components/temperature.c index 71e1378..45fbc9b 100644 --- a/components/temperature.c +++ b/components/temperature.c @@ -4,18 +4,18 @@ #include "../util.h" #if defined(__linux__) - #include + #include const char * temp(const char *file) { uintmax_t temp; - if(pscanf(file, "%" PRIuMAX, &temp) != 1) { + if(pscanf(file, "%ju", &temp) != 1) { return NULL; } - return bprintf("%" PRIuMAX, temp / 1000); + return bprintf("%ju", temp / 1000); } #elif defined(__OpenBSD__) #include