diff options
author | Mikael Ronstrom <mikael@dator8> | 2011-01-17 13:25:31 +0100 |
---|---|---|
committer | Mikael Ronstrom <mikael@dator8> | 2011-01-17 13:25:31 +0100 |
commit | 62c99943b1b87392e575cb9491000bb892cfe0ad (patch) | |
tree | 2d741fe2d988e58b6542526642c5acab8e47c987 /sql/log.h | |
parent | 3a940853a917d770067749ba417fee08a672d28f (diff) | |
download | mariadb-git-62c99943b1b87392e575cb9491000bb892cfe0ad.tar.gz |
BUG#59549, fix compiler error on Windows
Diffstat (limited to 'sql/log.h')
-rw-r--r-- | sql/log.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/log.h b/sql/log.h index 05f8a4ce286..d287da0dcd1 100644 --- a/sql/log.h +++ b/sql/log.h @@ -63,9 +63,9 @@ class TC_LOG_MMAP: public TC_LOG { public: // only to keep Sun Forte on sol9x86 happy typedef enum { - POOL, // page is in pool - ERROR, // last sync failed - DIRTY // new xids added since last sync + PS_POOL, // page is in pool + PS_ERROR, // last sync failed + PS_DIRTY // new xids added since last sync } PAGE_STATE; private: |