Skip to content
Snippets Groups Projects
Commit e34cb902 authored by Jacques Guignot's avatar Jacques Guignot
Browse files

moved a local variable declaration, which crashed MSVC... Picky compiler...

parent 969966f0
Branches
Tags
No related merge requests found
......@@ -283,13 +283,13 @@ static PyObject *Ipo_addCurve(BPy_Ipo *self, PyObject *args)
char*s = 0;
IpoCurve*icu;
Link * link;
struct Object * object;
if (!PyArg_ParseTuple(args, "s",&s))
return (EXPP_ReturnPyObjError (PyExc_TypeError, "expected string argument"));
/* insertkey demande un pointeur sur l'objet pour lequel on veut ajouter
une courbe IPO*/
struct Object * object;
link = G.main->object.first;
while (link)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment