]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Data should be unsigned or we might run into problems when converting
authorAndreas Öman <andreas@lonelycoder.com>
Tue, 6 May 2008 19:20:04 +0000 (19:20 +0000)
committerAndreas Öman <andreas@lonelycoder.com>
Tue, 6 May 2008 19:20:04 +0000 (19:20 +0000)
the message size

intercom.h

index 0fcf4fb7d9c7adb5e7bb166592da49615c5d0979..76bb1c4bd6c97b9d6a8ba7e50812820066fb5988 100644 (file)
@@ -30,7 +30,7 @@ typedef struct icom {
   void *opaque;
   icom_callback_t *cb;
 
-  char *rcvbuf;
+  uint8_t *rcvbuf;
   int rcvbufptr;
   int rcvbufsize;
 } icom_t;