From 86a05ecdb5eb91cf174e9b3c8adf0187e868aa68 Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Tue, 5 May 2009 13:07:30 +0000 Subject: Added missing semicolon. --- Modules/posixmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index d38a4db..87ab2fa 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1928,7 +1928,7 @@ posix_lchmod(PyObject *self, PyObject *args) if (!PyArg_ParseTuple(args, "O&i:lchmod", PyUnicode_FSConverter, &opath, &i)) return NULL; - path = bytes2str(opath, 1) + path = bytes2str(opath, 1); Py_BEGIN_ALLOW_THREADS res = lchmod(path, i); Py_END_ALLOW_THREADS -- cgit v0.12