[tuxdroid-svn] r1233 - firmware/tuxup/trunk
Status: Beta
Brought to you by:
ks156
From: Paul_R <c2m...@c2...> - 2008-06-13 15:06:48
|
Author: Paul_R Date: 2008-06-13 17:06:44 +0200 (Fri, 13 Jun 2008) New Revision: 1233 Modified: firmware/tuxup/trunk/bootloader.c Log: * Bug : type error Modified: firmware/tuxup/trunk/bootloader.c =================================================================== --- firmware/tuxup/trunk/bootloader.c 2008-06-12 23:12:48 UTC (rev 1232) +++ firmware/tuxup/trunk/bootloader.c 2008-06-13 15:06:44 UTC (rev 1233) @@ -69,7 +69,7 @@ #define BOOT_EXIT 3 #ifndef WIN32 -static bool wait_status(char value, int timeout); +static bool wait_status(unsigned char value, int timeout); #endif static void compute_progress_bar(float line_nb); @@ -834,7 +834,7 @@ * bootloader ACK. */ #ifndef WIN32 -static bool wait_status(char value, int timeout) +static bool wait_status(unsigned char value, int timeout) { unsigned char data_buffer[5]; uint8_t sttime = time(NULL); |