From: Fred Drake Date: Mon, 26 Aug 2002 21:20:30 +0000 (+0000) Subject: Fix a couple of whitespace consistency nits. X-Git-Tag: v2.3c1~4282 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e20131efc336d2713c311efc9c29d48637b41b92;p=thirdparty%2FPython%2Fcpython.git Fix a couple of whitespace consistency nits. --- diff --git a/Python/dynload_win.c b/Python/dynload_win.c index 71789625da30..b9d5c8e0c773 100644 --- a/Python/dynload_win.c +++ b/Python/dynload_win.c @@ -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 &&