From: Fredrik Lundh Date: Mon, 10 Jul 2000 16:38:09 +0000 (+0000) Subject: - stupid typo. X-Git-Tag: v2.0b1~918 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=10723347c61e204224307340dc79f661c43e7ae1;p=thirdparty%2FPython%2Fcpython.git - stupid typo. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index cf12b879771e..c0b30f9514b5 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.";