summaryrefslogtreecommitdiff
path: root/Python/dynload_win.c
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-08-26 21:20:30 +0000
committerFred Drake <fdrake@acm.org>2002-08-26 21:20:30 +0000
commit9fe297d59740301f58f00acc652b83b7b9e579a7 (patch)
tree823a3ea122d8f0f17ec8b9766e9add42a5a93749 /Python/dynload_win.c
parent7c3cca76f16ed894cc5628df1107bae38acb809b (diff)
downloadcpython-9fe297d59740301f58f00acc652b83b7b9e579a7.tar.gz
Fix a couple of whitespace consistency nits.
Diffstat (limited to 'Python/dynload_win.c')
-rw-r--r--Python/dynload_win.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/dynload_win.c b/Python/dynload_win.c
index 71789625da..b9d5c8e0c7 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 &&