Skip to content

Commit

Permalink
Fix msvc9 compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
cgohlke authored and charris committed Feb 11, 2012
1 parent aefc2c7 commit e0b7cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scipy/special/_cephesmodule.c
Expand Up @@ -1051,9 +1051,9 @@ static PyObject *scipy_special_SpecialFunctionWarning = NULL;

void scipy_special_raise_warning(char *fmt, ...)
{
NPY_ALLOW_C_API_DEF;
char msg[1024];
va_list ap;
NPY_ALLOW_C_API_DEF;

va_start(ap, fmt);
PyOS_vsnprintf(msg, 1024, fmt, ap);
Expand Down

0 comments on commit e0b7cf8

Please sign in to comment.