altos: packet and usb i/o routines use 'char', not 'uint8_t'
authorKeith Packard <keithp@keithp.com>
Thu, 6 Jan 2011 19:28:35 +0000 (11:28 -0800)
committerKeith Packard <keithp@keithp.com>
Thu, 6 Jan 2011 19:28:35 +0000 (11:28 -0800)
Just fixing the type of a local variable holding a character
passed from the packet link to usb.

Signed-off-by: Keith Packard <keithp@keithp.com>
src/ao_packet_master.c

index 0808bc80af419c68efbfa4f8869eb8526bef634a..5f79885c3a4fad5085a7318703245a72520eef30 100644 (file)
@@ -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)