Browse Source

Fix whitespace

master
Aaron Marcher 8 years ago
parent
commit
e213b48122
  1. 2
      components/temperature.c
  2. 2
      components/wifi.c

2
components/temperature.c

@ -11,7 +11,7 @@
{
uintmax_t temp;
if(pscanf(file, "%ju", &temp) != 1) {
if (pscanf(file, "%ju", &temp) != 1) {
return NULL;
}

2
components/wifi.c

@ -32,7 +32,7 @@
}
p = fgets(status, 5, fp);
fclose(fp);
if(!p || strcmp(status, "up\n") != 0) {
if (!p || strcmp(status, "up\n") != 0) {
return NULL;
}

Loading…
Cancel
Save