From: Keith Packard Date: Thu, 6 Jan 2011 19:28:35 +0000 (-0800) Subject: altos: packet and usb i/o routines use 'char', not 'uint8_t' X-Git-Tag: debian/0.8.1+18+g408a3e0~6 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=f3f1b1488bdc92fa9277dc549ba9f3210a8d4c8c altos: packet and usb i/o routines use 'char', not 'uint8_t' Just fixing the type of a local variable holding a character passed from the packet link to usb. Signed-off-by: Keith Packard --- diff --git a/src/ao_packet_master.c b/src/ao_packet_master.c index 0808bc80..5f79885c 100644 --- a/src/ao_packet_master.c +++ b/src/ao_packet_master.c @@ -35,7 +35,7 @@ ao_packet_getchar(void) __critical static void ao_packet_echo(void) __reentrant { - uint8_t c; + char c; while (ao_packet_enable) { c = ao_packet_getchar(); if (c != AO_READ_AGAIN)