From: Andreas Ă–man Date: Tue, 6 May 2008 19:20:04 +0000 (+0000) Subject: Data should be unsigned or we might run into problems when converting X-Git-Tag: 2.12~1012 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f44fccc2d812d93266e2e6d2d0ca7e100aafdc9b;p=thirdparty%2Ftvheadend.git Data should be unsigned or we might run into problems when converting the message size --- diff --git a/intercom.h b/intercom.h index 0fcf4fb7d..76bb1c4bd 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;