#ifndef WIN32
/* make null versions of these win32 functions */
static inline int IsDebuggerPresent (void) { return false; }
- static inline void OutputDebugString (const void * unused UNUSED) { }
+ static inline void OutputDebugStringA (const void * unused UNUSED) { }
#endif
/***
evbuffer_add_printf (buf, " (%s:%d)\n", base, line);
/* FIXME (libevent2) ifdef this out for nonwindows platforms */
message = evbuffer_free_to_str (buf);
- OutputDebugString (message);
+ OutputDebugStringA (message);
if (fp)
fputs (message, fp);
evutil_vsnprintf (buf, sizeof (buf), fmt, ap);
va_end (ap);
- OutputDebugString (buf);
+ OutputDebugStringA (buf);
if (*buf)
{