]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #26671: Fixed #ifdef indentation.
authorSerhiy Storchaka <storchaka@gmail.com>
Wed, 6 Apr 2016 20:02:46 +0000 (23:02 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Wed, 6 Apr 2016 20:02:46 +0000 (23:02 +0300)
Modules/posixmodule.c

index e6704aced322317167ef09e377718a8e58e7d30f..a87bbbd6b400c290eb7baf662ffe87f35e0340fa 100644 (file)
@@ -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;