From: Neal Norwitz Date: Mon, 15 Apr 2002 16:29:00 +0000 (+0000) Subject: Remove unused variable reported by Walter Dörwald X-Git-Tag: v2.3c1~5955 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=726e013eff519a3e3a40b0313e776608c12fafc5;p=thirdparty%2FPython%2Fcpython.git Remove unused variable reported by Walter Dörwald --- diff --git a/Modules/pwdmodule.c b/Modules/pwdmodule.c index eeed608838b1..701ae0325167 100644 --- a/Modules/pwdmodule.c +++ b/Modules/pwdmodule.c @@ -158,7 +158,7 @@ static PyMethodDef pwd_methods[] = { DL_EXPORT(void) initpwd(void) { - PyObject *m, *d; + PyObject *m; m = Py_InitModule3("pwd", pwd_methods, pwd__doc__); PyStructSequence_InitType(&StructPwdType, &struct_pwd_type_desc);