diff options
author | Aaron Marcher <me@drkhsh.at> | 2018-07-07 11:08:26 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-07-07 11:08:26 +0200 |
commit | 2b0df5f3d490f58341e2e828f412298adfabae92 (patch) | |
tree | 2153a871d07704dcae0eec15b1d8ceab04724fbd /components/temperature.c | |
parent | 5316c498c721e25dace81a6df30121abe9eefc7b (diff) |
Simplify format specifiers for uintmax_t
Diffstat (limited to 'components/temperature.c')
-rw-r--r-- | components/temperature.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 <inttypes.h> + #include <stdint.h> 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 <stdio.h> |