summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2012-10-30 01:27:11 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2012-10-30 01:27:11 (GMT)
commit266f882dcae093e40d1d3a6611d616559c3ebeaf (patch)
treeaf23fd90fa11f328e2b2a51a0246ac229d4ae0ba
parent292c835548df618983043b9698d0dc8c34adea12 (diff)
downloadcpython-266f882dcae093e40d1d3a6611d616559c3ebeaf.zip
cpython-266f882dcae093e40d1d3a6611d616559c3ebeaf.tar.gz
cpython-266f882dcae093e40d1d3a6611d616559c3ebeaf.tar.bz2
Issue #15478: Fix compilation on Windows
-rw-r--r--Modules/posixmodule.c1
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));