diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-10-30 01:27:11 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-10-30 01:27:11 (GMT) |
commit | 266f882dcae093e40d1d3a6611d616559c3ebeaf (patch) | |
tree | af23fd90fa11f328e2b2a51a0246ac229d4ae0ba | |
parent | 292c835548df618983043b9698d0dc8c34adea12 (diff) | |
download | cpython-266f882dcae093e40d1d3a6611d616559c3ebeaf.zip cpython-266f882dcae093e40d1d3a6611d616559c3ebeaf.tar.gz cpython-266f882dcae093e40d1d3a6611d616559c3ebeaf.tar.bz2 |
Issue #15478: Fix compilation on Windows
-rw-r--r-- | Modules/posixmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 5cde8b1..83685fb 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -2720,7 +2720,6 @@ static PyObject * posix_lchflags(PyObject *self, PyObject *args) { path_t path; - char *path; unsigned long flags; int res; memset(&path, 0, sizeof(path)); |