Removed compiler warnings.

This commit is contained in:
oliverschmidt 2007-11-17 22:50:49 +00:00
parent 90edc773b0
commit 4b68a3ee5d

View file

@ -29,10 +29,12 @@
* *
* This an example program for the Contiki desktop OS * This an example program for the Contiki desktop OS
* *
* $Id: calc.c,v 1.2 2006/08/16 22:11:16 oliverschmidt Exp $ * $Id: calc.c,v 1.3 2007/11/17 22:50:49 oliverschmidt Exp $
* *
*/ */
#include <stddef.h>
#include "contiki.h" #include "contiki.h"
#include "ctk/ctk.h" #include "ctk/ctk.h"
@ -221,25 +223,25 @@ PROCESS_THREAD(calc_process, ev, data)
PROCESS_WAIT_EVENT(); PROCESS_WAIT_EVENT();
if(ev == ctk_signal_keypress) { if(ev == ctk_signal_keypress) {
if((char)data >= '0' && if((char)(size_t)data >= '0' &&
(char)data <= '9') { (char)(size_t)data <= '9') {
add_to_input((char)data); add_to_input((char)(size_t)data);
} else if((char)data == ' ') { } else if((char)(size_t)data == ' ') {
clear_input(); clear_input();
} else if((char)data == '+') { } else if((char)(size_t)data == '+') {
input_to_operand1(); input_to_operand1();
op = OP_ADD; op = OP_ADD;
} else if((char)data == '-') { } else if((char)(size_t)data == '-') {
input_to_operand1(); input_to_operand1();
op = OP_SUB; op = OP_SUB;
} else if((char)data == '*') { } else if((char)(size_t)data == '*') {
input_to_operand1(); input_to_operand1();
op = OP_MUL; op = OP_MUL;
} else if((char)data == '/') { } else if((char)(size_t)data == '/') {
input_to_operand1(); input_to_operand1();
op = OP_DIV; op = OP_DIV;
} else if((char)data == '=' || } else if((char)(size_t)data == '=' ||
(char)data == CH_ENTER) { (char)(size_t)data == CH_ENTER) {
calculate(); calculate();
} }