diff options
author | Tectu <joel@unormal.org> | 2012-06-25 10:51:57 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-25 10:51:57 +0200 |
commit | f2cb8a0c5310430a88c3392f8f7b8048da97dbc5 (patch) | |
tree | e8fb8c41e61795b09bfe7cda6c0043499787e2b8 | |
parent | 4bd671ed2e2a9aaf05f0d4b415c30d3358d58e9d (diff) | |
download | uGFX-f2cb8a0c5310430a88c3392f8f7b8048da97dbc5.tar.gz uGFX-f2cb8a0c5310430a88c3392f8f7b8048da97dbc5.tar.bz2 uGFX-f2cb8a0c5310430a88c3392f8f7b8048da97dbc5.zip |
compiler warnings
-rw-r--r-- | gui.c | 2 | ||||
-rw-r--r-- | gui.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -75,7 +75,7 @@ void guiInit(uint16_t updateInterval) { tp = chThdCreateFromHeap(NULL, THD_WA_SIZE(64), HIGHPRIO-1, TouchPadThread, updateInterval); } -Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsigned char *str, uint16_t fontColor, uint16_t buttonColor, uint16_t interval, uint8_t *active, uint8_t *state) { +Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, uint16_t interval, uint8_t *active, uint8_t *state) { struct button_t *button; Thread *tp = NULL; @@ -57,7 +57,7 @@ void guiInit(uint16_t updateIntervl); * * return: pointer to created thread */ -Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsigned char *str, uint16_t fontColor, uint16_t buttonColor, uint16_t inverval, uint8_t *active, uint8_t *state); +Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, uint16_t inverval, uint8_t *active, uint8_t *state); /* * Description: draws a bar graph and updates it's value |