missing include for fluid

This commit is contained in:
2009-08-10 14:15:05 +00:00
parent f1c69e9d84
commit cb9e51bf8a
2 changed files with 2 additions and 2 deletions

View File

@@ -808,7 +808,7 @@ float BPY_pydriver_eval (ChannelDriver *driver)
int BPY_button_eval(bContext *C, char *expr, double *value)
{
PyGILState_STATE gilstate;
PyObject *dict, *retval, *expr_conv;
PyObject *dict, *retval, *expr_conv= NULL;
int error_ret = 0;
if (!value || !expr || expr[0]=='\0') return -1;