1
0
Fork 0

fixed undefined symbol zend_vspprintf, use vspprintf instead

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@545 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
3.0
Xuefer 15 years ago
parent 44c2500829
commit 8560c8fa43

@ -564,7 +564,7 @@ static void xc_sandbox_error_cb(int type, const char *error_filename, const uint
}
compilererror = &sandbox->compilererrors[sandbox->compilererror_cnt++];
compilererror->lineno = error_lineno;
compilererror->error_len = zend_vspprintf(&compilererror->error, 0, format, args);
compilererror->error_len = vspprintf(&compilererror->error, 0, format, args);
}
/* }}} */
#endif

Loading…
Cancel
Save