Fix whitespace
Aaron Marcher me@drkhsh.at
Sun, 08 Jul 2018 17:44:53 +0200
3 files changed,
3 insertions(+),
3 deletions(-)
M
components/ram.c
→
components/ram.c
@@ -80,7 +80,7 @@ #include <sys/sysctl.h>
#include <sys/types.h> #include <unistd.h> - #define LOG1024 10 + #define LOG1024 10 #define pagetok(size, pageshift) (size_t)(size << (pageshift - LOG1024)) inline int
M
components/temperature.c
→
components/temperature.c
@@ -11,7 +11,7 @@ temp(const char *file)
{ uintmax_t temp; - if(pscanf(file, "%ju", &temp) != 1) { + if (pscanf(file, "%ju", &temp) != 1) { return NULL; }
M
components/wifi.c
→
components/wifi.c
@@ -32,7 +32,7 @@ return NULL;
} p = fgets(status, 5, fp); fclose(fp); - if(!p || strcmp(status, "up\n") != 0) { + if (!p || strcmp(status, "up\n") != 0) { return NULL; }