Skip to content

Commit

Permalink
Fix compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdunkels authored and simonduq committed Oct 20, 2015
1 parent afe3612 commit 9b6377e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions examples/sky-shell-webserver/sky-shell-webserver.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@

#include <stdio.h>
#include <string.h>
#include <io.h>
#include <signal.h>

/*---------------------------------------------------------------------------*/
PROCESS(sky_shell_process, "Sky Contiki shell w. webserver");
Expand Down
2 changes: 1 addition & 1 deletion examples/z1/test-sht25.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ PROCESS_THREAD(test_sht25_process, ev, data)
temperature = sht25.value(SHT25_VAL_TEMP);
printf("Temperature %d.%d ºC\n", temperature / 100, temperature % 100);
humidity = sht25.value(SHT25_VAL_HUM);
printf("Humidity %d.%d %RH\n", humidity / 100, humidity % 100);
printf("Humidity %d.%d %%RH\n", humidity / 100, humidity % 100);
}
PROCESS_END();
}

0 comments on commit 9b6377e

Please sign in to comment.