From: Serhiy Storchaka Date: Wed, 6 Apr 2016 20:02:46 +0000 (+0300) Subject: Issue #26671: Fixed #ifdef indentation. X-Git-Tag: v3.6.0a1~262 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3291d85a2f6c6791ff1d8d1111b6bc46bf09d9e4;p=thirdparty%2FPython%2Fcpython.git Issue #26671: Fixed #ifdef indentation. --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index e6704aced322..a87bbbd6b400 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -884,11 +884,11 @@ path_converter(PyObject *o, void *p) #endif } else if (PyObject_CheckBuffer(o)) { -# ifdef MS_WINDOWS +#ifdef MS_WINDOWS if (win32_warn_bytes_api()) { return 0; } -# endif +#endif bytes = PyBytes_FromObject(o); if (!bytes) { return 0;