Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e20131e

Browse files
committed
Fix a couple of whitespace consistency nits.
1 parent 6049cb8 commit e20131e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Python/dynload_win.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,12 +217,12 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
217217
errBuf[sizeof(errBuf)-1] = '\0';
218218
}
219219
PyErr_SetString(PyExc_ImportError, errBuf);
220-
return NULL;
220+
return NULL;
221221
} else {
222222
char buffer[256];
223223

224224
PyOS_snprintf(buffer, sizeof(buffer), "python%d%d.dll",
225-
PY_MAJOR_VERSION,PY_MINOR_VERSION);
225+
PY_MAJOR_VERSION,PY_MINOR_VERSION);
226226
import_python = GetPythonImport(hDLL);
227227

228228
if (import_python &&

0 commit comments

Comments
 (0)