Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorStephen Swaney <sswaney@centurytel.net>2008-03-15 17:41:47 +0300
committerStephen Swaney <sswaney@centurytel.net>2008-03-15 17:41:47 +0300
commitbb48a75c37e85fd5cc77ebd1c585f575932fb305 (patch)
tree7140e104c9ced1ac5793063d7fccb9ba492c9ee2 /intern
parent4f553a59f7637661ce41cfdabfdf97c37517ad73 (diff)
compiler warning cleanup
Diffstat (limited to 'intern')
-rw-r--r--intern/guardedalloc/intern/mallocn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/guardedalloc/intern/mallocn.c b/intern/guardedalloc/intern/mallocn.c
index 20d3a5b07fc..af9443428f7 100644
--- a/intern/guardedalloc/intern/mallocn.c
+++ b/intern/guardedalloc/intern/mallocn.c
@@ -114,8 +114,8 @@ static const char *check_memlist(MemHead *memh);
volatile int totblock= 0;
volatile unsigned long mem_in_use= 0, mmap_in_use= 0;
-volatile static struct localListBase _membase;
-volatile static struct localListBase *membase = &_membase;
+static volatile struct localListBase _membase;
+static volatile struct localListBase *membase = &_membase;
static void (*error_callback)(char *) = NULL;
static void (*thread_lock_callback)(void) = NULL;
static void (*thread_unlock_callback)(void) = NULL;