commit | 6cb0109d64869f706bd3ff9e4bfe5ecdfbeef065 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Wed Jun 11 06:22:46 2008 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Wed Jun 11 06:22:46 2008 +0000 |
tree | 733d4f2ecccf7a36de83b45db8747fc1e847b68e | |
parent | b9e8dcf2e0de3bdb96657921a142b474639955a2 [diff] |
Fix typo.
diff --git a/Python/dynload_win.c b/Python/dynload_win.c index 21e71b2..2f46037 100644 --- a/Python/dynload_win.c +++ b/Python/dynload_win.c
@@ -165,7 +165,7 @@ dl_funcptr p; char funcname[258], *import_python; - PyOS_snprintf(funcname, sizeof(funcname), "PyInit_init%.200s", shortname); + PyOS_snprintf(funcname, sizeof(funcname), "PyInit_%.200s", shortname); { HINSTANCE hDLL = NULL;