diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-06 23:02:46 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-06 23:02:46 +0300 |
commit | 3291d85a2f6c6791ff1d8d1111b6bc46bf09d9e4 (patch) | |
tree | ce0a88ff660af69d5c9db9af76568e0062e36082 | |
parent | aaf553bac4124cda748b68caf7d501fd5b574046 (diff) | |
download | cpython-git-3291d85a2f6c6791ff1d8d1111b6bc46bf09d9e4.tar.gz |
Issue #26671: Fixed #ifdef indentation.
-rw-r--r-- | Modules/posixmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index e6704aced3..a87bbbd6b4 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; |