mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Microsoft has '_' in front of random functions. We typedef this away.
svn path=/trunk/log/; revision=2192
This commit is contained in:
parent
64942a4113
commit
f69b99f1c8
@ -17,6 +17,8 @@
|
||||
|
||||
#ifdef _WIN32
|
||||
#define mutex_t CRITICAL_SECTION
|
||||
#define snprintf _snprintf
|
||||
#define vsnprintf _vsnprintf
|
||||
#else
|
||||
#define mutex_t pthread_mutex_t
|
||||
#endif
|
||||
@ -84,7 +86,8 @@ int log_open(const char *filename)
|
||||
_release_log_id(log_id);
|
||||
return LOG_ECANTOPEN;
|
||||
}
|
||||
setvbuf(loglist[log_id].logfile, NULL, _IOLBF, 0);
|
||||
|
||||
setvbuf(loglist[log_id].logfile, NULL, _IOLBF, 0);
|
||||
|
||||
return log_id;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user