Remove unused variable

This commit is contained in:
Neal Norwitz 2002-12-02 04:40:21 +00:00
parent 56643679f4
commit ae6bf4adfa
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ main(int argc, char *argv[])
{
PyObject *pName, *pModule, *pDict, *pFunc;
PyObject *pArgs, *pValue;
int i, result;
int i;
if (argc < 3) {
fprintf(stderr,"Usage: call pythonfile funcname [args]\n");