From 006b9014789272a3e55f71a4dfe987c69b37edfb Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 6 Aug 2017 15:59:46 -0400 Subject: [PATCH] Fixed compiler warnings on GCC. --- src/physfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/physfs.c b/src/physfs.c index 60ba2b1..29a4ffb 100644 --- a/src/physfs.c +++ b/src/physfs.c @@ -244,7 +244,7 @@ typedef struct __PHYSFS_MemoryIoInfo PHYSFS_uint64 len; PHYSFS_uint64 pos; PHYSFS_Io *parent; - volatile PHYSFS_uint32 refcount; + int refcount; void (*destruct)(void *); } MemoryIoInfo;