aboutsummaryrefslogtreecommitdiff
path: root/mysql/libmysql/authentication_win/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'mysql/libmysql/authentication_win/common.h')
-rw-r--r--mysql/libmysql/authentication_win/common.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/mysql/libmysql/authentication_win/common.h b/mysql/libmysql/authentication_win/common.h
index b7525fb..5298195 100644
--- a/mysql/libmysql/authentication_win/common.h
+++ b/mysql/libmysql/authentication_win/common.h
@@ -48,14 +48,14 @@ void set_log_level(unsigned int);
/*
If DEBUG_ERROR_LOG is defined then error logging happens only
- in debug-copiled code. Otherwise ERROR_LOG() expands to
+ in debug-copiled code. Otherwise ERROR_LOG() expands to
error_log_print() even in production code.
Note: Macro ERROR_LOG() can use printf-like format string like this:
ERROR_LOG(Level, ("format string", args));
- The implementation should handle it correctly. Currently it is passed
+ The implementation should handle it correctly. Currently it is passed
to fprintf() (see error_log_vprint() function).
*/
@@ -78,7 +78,8 @@ void error_log_print(const char *fmt, ...)
va_end(args);
}
-typedef char Error_message_buf[1024];
+#define ERROR_MESSAGE_BUFF_SZ 1024
+typedef char Error_message_buf[ERROR_MESSAGE_BUFF_SZ];
const char* get_last_error_message(Error_message_buf);