From f44fccc2d812d93266e2e6d2d0ca7e100aafdc9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Tue, 6 May 2008 19:20:04 +0000 Subject: [PATCH] Data should be unsigned or we might run into problems when converting the message size --- intercom.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intercom.h b/intercom.h index 0fcf4fb7..76bb1c4b 100644 --- a/intercom.h +++ b/intercom.h @@ -30,7 +30,7 @@ typedef struct icom { void *opaque; icom_callback_t *cb; - char *rcvbuf; + uint8_t *rcvbuf; int rcvbufptr; int rcvbufsize; } icom_t;