log.cc:

  Fixing failed merge
parent cf1a0b32
...@@ -3969,12 +3969,15 @@ void print_buffer_to_nt_eventlog(enum loglevel level, char *buff, ...@@ -3969,12 +3969,15 @@ void print_buffer_to_nt_eventlog(enum loglevel level, char *buff,
*/ */
#ifdef EMBEDDED_LIBRARY #ifdef EMBEDDED_LIBRARY
void vprint_msg_to_log(enum loglevel level __attribute__((unused)), int vprint_msg_to_log(enum loglevel level __attribute__((unused)),
const char *format __attribute__((unused)), const char *format __attribute__((unused)),
va_list argsi __attribute__((unused))) va_list argsi __attribute__((unused)))
{} {
DBUG_ENTER("vprint_msg_to_log");
DBUG_RETURN(0);
}
#else /*!EMBEDDED_LIBRARY*/ #else /*!EMBEDDED_LIBRARY*/
void vprint_msg_to_log(enum loglevel level, const char *format, va_list args) int vprint_msg_to_log(enum loglevel level, const char *format, va_list args)
{ {
char buff[1024]; char buff[1024];
uint length; uint length;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment