From eb46d8250086ca4f7d8bcf2b9d85d362b4ff0dcc 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 60ba2b17..29a4ffb7 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;