[ #496154 ] Typos in dynload_beos.c

as suggested in the report.  A little embarassing; 2.2.1 candidate for sure.
This commit is contained in:
Michael W. Hudson 2002-01-23 15:51:12 +00:00
parent 64e9d61a1e
commit ff06671acf
1 changed files with 2 additions and 2 deletions

View File

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