From 1b4032c74e36dfdbb2ba0063796dd7c2b924babd Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 22 Nov 2017 08:05:36 +0300 Subject: Explore possibility of supporting mingw --- mysql/libmysql/authentication_win/common.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'mysql/libmysql/authentication_win/common.h') 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); -- cgit v1.1