From 13f8f978e8cca30633244e30a494b2f8edf5a073 Mon Sep 17 00:00:00 2001 From: Kevin Brace Date: Thu, 11 Apr 2019 17:47:40 -0700 Subject: Eliminate pointer arithmetic compilation warnings Signed-off-by: Kevin Brace --- src/cir.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cir.h') diff --git a/src/cir.h b/src/cir.h index b117793..dba7b65 100644 --- a/src/cir.h +++ b/src/cir.h @@ -39,8 +39,8 @@ typedef struct { Bool HasFBitBlt; CARD32 IOAddress; CARD32 FbAddress; - void * IOBase; - void * FbBase; + unsigned char *IOBase; + unsigned char *FbBase; long FbMapSize; long IoMapSize; int MinClock; -- cgit v1.2.1