Correct comment.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-12-14 23:37:55 +01:00
부모 fd0685f16e
커밋 e623111f41
로그인 계정: belliash
GPG 키 ID: 4E829243E0CFE6B4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -3939,8 +3939,8 @@ static sxi32 VmByteCodeExec(
*(void**)(&init) = dlsym(pModule.pHandle, "initializeModule");
#endif
if(!init) {
PH7_VmThrowError(pVm, PH7_CTX_ERR, "ImportError: Method '%z::initializeModule()' not found", &pModule.sName);
/* Could not find the module entry point */
PH7_VmThrowError(pVm, PH7_CTX_ERR, "ImportError: Method '%z::initializeModule()' not found", &pModule.sName);
}
/* Initialize the module */
init(pVm, &pModule.fVer, &pModule.sDesc);