From e623111f415c548f87789a777f39f44a78f585e0 Mon Sep 17 00:00:00 2001 From: belliash Date: Sat, 14 Dec 2019 23:37:55 +0100 Subject: [PATCH] Correct comment. --- engine/vm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/vm.c b/engine/vm.c index ee3da82..20231b3 100644 --- a/engine/vm.c +++ b/engine/vm.c @@ -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);