Fixed deprecated volatile static declaration (-> static volatile)
This commit is contained in:
parent
33af9805ad
commit
24a5da9648
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include "pageFile.h"
|
#include "pageFile.h"
|
||||||
|
|
||||||
volatile static int initialized = 0;
|
static volatile int initialized = 0;
|
||||||
static int automaticallyTuncating = 0;
|
static int automaticallyTuncating = 0;
|
||||||
static pthread_t truncationThread;
|
static pthread_t truncationThread;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue