summaryrefslogtreecommitdiff
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorFredrik Lundh <fredrik@pythonware.com>2000-07-10 16:38:09 +0000
committerFredrik Lundh <fredrik@pythonware.com>2000-07-10 16:38:09 +0000
commit10723347c61e204224307340dc79f661c43e7ae1 (patch)
tree0997234b1c1edf3b02c4ab8c12838ed92b50a184 /Modules/posixmodule.c
parentc716684df85d3a5f22616a8e8565b49911df1129 (diff)
downloadcpython-git-10723347c61e204224307340dc79f661c43e7ae1.tar.gz
- stupid typo.
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index cf12b87977..c0b30f9514 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -749,7 +749,7 @@ posix_fdatasync(PyObject *self, PyObject *args)
#endif /* HAVE_FDATASYNC */
-#if HAVE_CHOWN
+#ifdef HAVE_CHOWN
static char posix_chown__doc__[] =
"chown(path, uid, gid) -> None\n\
Change the owner and group id of path to the numeric uid and gid.";