summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-06-11 06:22:46 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2008-06-11 06:22:46 (GMT)
commit6cb0109d64869f706bd3ff9e4bfe5ecdfbeef065 (patch)
tree733d4f2ecccf7a36de83b45db8747fc1e847b68e
parentb9e8dcf2e0de3bdb96657921a142b474639955a2 (diff)
downloadcpython-6cb0109d64869f706bd3ff9e4bfe5ecdfbeef065.zip
cpython-6cb0109d64869f706bd3ff9e4bfe5ecdfbeef065.tar.gz
cpython-6cb0109d64869f706bd3ff9e4bfe5ecdfbeef065.tar.bz2
Fix typo.
-rw-r--r--Python/dynload_win.c2
1 files changed, 1 insertions, 1 deletions
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 _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
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;