summaryrefslogtreecommitdiff
path: root/components/temperature.c
diff options
context:
space:
mode:
authorAaron Marcher <me@drkhsh.at>2018-07-07 11:08:26 +0200
committerAaron Marcher <me@drkhsh.at>2018-07-07 11:08:26 +0200
commitacfa1f50c24add6b9a78d94af21f9350150fb9c2 (patch)
tree2153a871d07704dcae0eec15b1d8ceab04724fbd /components/temperature.c
parentc2492c3f99d9d434a6f935dea8e97fa27cdd2adc (diff)
Simplify format specifiers for uintmax_t
Diffstat (limited to 'components/temperature.c')
-rw-r--r--components/temperature.c6
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>