Changeset 13966
- Timestamp:
- Feb 4, 2013, 8:48:33 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/log.c
r13868 r13966 33 33 /* make null versions of these win32 functions */ 34 34 static inline int IsDebuggerPresent (void) { return false; } 35 static inline void OutputDebugString (const void * unused UNUSED) { }35 static inline void OutputDebugStringA (const void * unused UNUSED) { } 36 36 #endif 37 37 … … 207 207 /* FIXME (libevent2) ifdef this out for nonwindows platforms */ 208 208 message = evbuffer_free_to_str (buf); 209 OutputDebugString (message);209 OutputDebugStringA (message); 210 210 if (fp) 211 211 fputs (message, fp); … … 239 239 va_end (ap); 240 240 241 OutputDebugString (buf);241 OutputDebugStringA (buf); 242 242 243 243 if (*buf)
Note: See TracChangeset
for help on using the changeset viewer.