From a871b5541933be69a178788e96938d4ba9fb304d Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Sat, 2 Oct 2021 17:56:45 -0600 Subject: [PATCH] bspxentry_t: make lumpdata a uint8_t* --- include/common/bspfile.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/common/bspfile.hh b/include/common/bspfile.hh index 824264bb..26185326 100644 --- a/include/common/bspfile.hh +++ b/include/common/bspfile.hh @@ -620,7 +620,7 @@ typedef struct { typedef struct bspxentry_s { char lumpname[24]; - const void *lumpdata; + const uint8_t *lumpdata; size_t lumpsize; struct bspxentry_s *next;