Commit 4953ea90 authored by Avuton Olrich's avatar Avuton Olrich

strtok() is recursive by default on win32.

parent e7a515c8
......@@ -32,6 +32,10 @@
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "crossfade"
#ifdef G_OS_WIN32
#define strtok_r(s,d,p) strtok(s,d)
#endif
static float mixramp_interpolate(char *ramp_list, float required_db)
{
float db, secs, last_db = nan(""), last_secs = 0;
......
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