]> granicus.if.org Git - python/commitdiff
Fix a couple of whitespace consistency nits.
authorFred Drake <fdrake@acm.org>
Mon, 26 Aug 2002 21:20:30 +0000 (21:20 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 26 Aug 2002 21:20:30 +0000 (21:20 +0000)
Python/dynload_win.c

index 71789625da30c4ae83573023b71f1119b224d1de..b9d5c8e0c7738aa2cf26ed12d715fea5f61efda2 100644 (file)
@@ -217,12 +217,12 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
                                errBuf[sizeof(errBuf)-1] = '\0';
                        }
                        PyErr_SetString(PyExc_ImportError, errBuf);
-               return NULL;
+                       return NULL;
                } else {
                        char buffer[256];
 
                        PyOS_snprintf(buffer, sizeof(buffer), "python%d%d.dll",
-                               PY_MAJOR_VERSION,PY_MINOR_VERSION);
+                                     PY_MAJOR_VERSION,PY_MINOR_VERSION);
                        import_python = GetPythonImport(hDLL);
 
                        if (import_python &&