From f7991e84918407d0dab46b216dd30322713e8c37 Mon Sep 17 00:00:00 2001 From: Sarrum Date: Sat, 21 Aug 2021 11:13:51 +0300 Subject: [PATCH] Fix typo in CLuaDatabaseDefs::DbFreeCallback --- Server/mods/deathmatch/logic/luadefs/CLuaDatabaseDefs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/mods/deathmatch/logic/luadefs/CLuaDatabaseDefs.cpp b/Server/mods/deathmatch/logic/luadefs/CLuaDatabaseDefs.cpp index f33ab352b4..3550f26018 100644 --- a/Server/mods/deathmatch/logic/luadefs/CLuaDatabaseDefs.cpp +++ b/Server/mods/deathmatch/logic/luadefs/CLuaDatabaseDefs.cpp @@ -215,7 +215,7 @@ void CLuaDatabaseDefs::DbFreeCallback(CDbJobData* pJobData, void* pContext) if (pJobData->stage >= EJobStage::RESULT && pJobData->result.status == EJobResult::FAIL) { if (!pJobData->result.bErrorSuppressed) - m_pScriptDebugging->LogWarning(pJobData->m_LuaDebugInfo, "dbExec failed; (%d) %s", pJobData->result.uiErrorCode, *pJobData->result.strReason); + m_pScriptDebugging->LogWarning(pJobData->m_LuaDebugInfo, "dbFree failed; (%d) %s", pJobData->result.uiErrorCode, *pJobData->result.strReason); } }