aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/heapmem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tinsel/heapmem.cpp')
-rw-r--r--engines/tinsel/heapmem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tinsel/heapmem.cpp b/engines/tinsel/heapmem.cpp
index 66a30d9b0b..fa05c3717b 100644
--- a/engines/tinsel/heapmem.cpp
+++ b/engines/tinsel/heapmem.cpp
@@ -70,7 +70,7 @@ MEM_NODE s_fixedMnodesList[5];
static MEM_NODE heapSentinel;
//
-static MEM_NODE *AllocMemNode(void);
+static MEM_NODE *AllocMemNode();
#ifdef DEBUG
static void MemoryStats() {
@@ -155,7 +155,7 @@ void MemoryDeinit() {
/**
* Allocate a mnode from the free list.
*/
-static MEM_NODE *AllocMemNode(void) {
+static MEM_NODE *AllocMemNode() {
// get the first free mnode
MEM_NODE *pMemNode = pFreeMemNodes;