Fix typo.

This commit is contained in:
Martin v. Löwis 2008-06-11 06:22:46 +00:00
parent b9e8dcf2e0
commit 6cb0109d64
1 changed files with 1 additions and 1 deletions

View File

@ -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;