diff options
author | Fred Drake <fdrake@acm.org> | 2002-08-26 21:20:30 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-08-26 21:20:30 (GMT) |
commit | e20131efc336d2713c311efc9c29d48637b41b92 (patch) | |
tree | 88692a21338676639d27bcfe45a05e1de449e82d /Python/dynload_win.c | |
parent | 6049cb8918b78c59ed87df8c42144018c9f67833 (diff) | |
download | cpython-e20131efc336d2713c311efc9c29d48637b41b92.zip cpython-e20131efc336d2713c311efc9c29d48637b41b92.tar.gz cpython-e20131efc336d2713c311efc9c29d48637b41b92.tar.bz2 |
Fix a couple of whitespace consistency nits.
Diffstat (limited to 'Python/dynload_win.c')
-rw-r--r-- | Python/dynload_win.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/dynload_win.c b/Python/dynload_win.c index 7178962..b9d5c8e 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 && |