1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-15 09:02:33 +03:00

compilation fix for AIX

This commit is contained in:
tomas@poseidon.ndb.mysql.com
2004-10-26 09:48:01 +00:00
parent 25f67aa11e
commit ee1acdf0e0
22 changed files with 113 additions and 112 deletions

View File

@@ -37,11 +37,11 @@ class FileLogHandler : public LogHandler
{
public:
/** Max number of log files to archive. */
static const int MAX_NO_FILES = 6;
STATIC_CONST( MAX_NO_FILES = 6 );
/** Max file size of the log before archiving. */
static const long MAX_FILE_SIZE = 1024000;
STATIC_CONST( MAX_FILE_SIZE = 1024000 );
/** Max number of log entries before archiving. */
static const unsigned int MAX_LOG_ENTRIES = 10000;
STATIC_CONST( MAX_LOG_ENTRIES = 10000 );
/**
* Default constructor.