Commit ff06671a authored by Michael W. Hudson's avatar Michael W. Hudson

Fix for

[ #496154 ] Typos in dynload_beos.c

as suggested in the report.  A little embarassing; 2.2.1 candidate for sure.
parent 64e9d61a
...@@ -206,7 +206,7 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, ...@@ -206,7 +206,7 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
return NULL; return NULL;
} }
PyOs_snprintf(funcname, sizeof(funcname), "init%.200s", shortname); PyOS_snprintf(funcname, sizeof(funcname), "init%.200s", shortname);
if( Py_VerboseFlag ) { if( Py_VerboseFlag ) {
printf( "get_image_symbol( %s )\n", funcname ); printf( "get_image_symbol( %s )\n", funcname );
} }
...@@ -233,7 +233,7 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, ...@@ -233,7 +233,7 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname,
"Bad index for %.180s", funcname ); "Bad index for %.180s", funcname );
break; break;
default: default:
PyOS_snprintf( buff, sizeof(buf), PyOS_snprintf( buff, sizeof(buff),
"can't load init function for dynamic module: " "can't load init function for dynamic module: "
"Unknown error looking up %.180s", funcname ); "Unknown error looking up %.180s", funcname );
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment