Fixed deprecated volatile static declaration (-> static volatile)

This commit is contained in:
Sears Russell 2006-06-13 22:43:58 +00:00
parent 33af9805ad
commit 24a5da9648

View file

@ -6,7 +6,7 @@
#include <assert.h>
#include "pageFile.h"
volatile static int initialized = 0;
static volatile int initialized = 0;
static int automaticallyTuncating = 0;
static pthread_t truncationThread;