commit | ae6bf4adfa1229d9a4a07e7768bae77bed110b1a | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Mon Dec 02 04:40:21 2002 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Mon Dec 02 04:40:21 2002 +0000 |
tree | 1720ed1d404b78e0c0ef1eb239c905487d891b99 | |
parent | 56643679f4cde17344646c610cad78e3e722daba [diff] |
Remove unused variable
diff --git a/Doc/ext/run-func.c b/Doc/ext/run-func.c index 842f15a..7733439 100644 --- a/Doc/ext/run-func.c +++ b/Doc/ext/run-func.c
@@ -5,7 +5,7 @@ { PyObject *pName, *pModule, *pDict, *pFunc; PyObject *pArgs, *pValue; - int i, result; + int i; if (argc < 3) { fprintf(stderr,"Usage: call pythonfile funcname [args]\n");