diff options
author | Kevin Brace <kevinbrace@gmx.com> | 2019-04-11 17:47:40 -0700 |
---|---|---|
committer | Kevin Brace <kevinbrace@gmx.com> | 2019-04-11 17:47:40 -0700 |
commit | 13f8f978e8cca30633244e30a494b2f8edf5a073 (patch) | |
tree | 0659341ba04a5364abdbd94007a87a2f791fb06f /src/cir.h | |
parent | 5d8d7bcbb1dce839b604b7ee63c29782152a6438 (diff) |
Eliminate pointer arithmetic compilation warnings
Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
Diffstat (limited to 'src/cir.h')
-rw-r--r-- | src/cir.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |