diff options
author | George Hazan <george.hazan@gmail.com> | 2016-09-14 18:04:55 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-09-14 18:04:55 +0000 |
commit | 3db0313f338d25593eeda9d60dd7b3c2f15394eb (patch) | |
tree | 997b4c06e585c47a415a916b0e37255e198a7038 /plugins/MirLua/src/m_database.cpp | |
parent | 7bdb598e26e7e98788933af43090d34027166969 (diff) |
fix for 32-bit libs
git-svn-id: http://svn.miranda-ng.org/main/trunk@17297 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/m_database.cpp')
-rw-r--r-- | plugins/MirLua/src/m_database.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/src/m_database.cpp b/plugins/MirLua/src/m_database.cpp index 64715f01cf..c7c8c091f4 100644 --- a/plugins/MirLua/src/m_database.cpp +++ b/plugins/MirLua/src/m_database.cpp @@ -376,7 +376,7 @@ static int db_DeleteModule(lua_State *L) MCONTACT hContact = lua_tointeger(L, 1);
LPCSTR szModule = luaL_checkstring(L, 2);
- INT_PTR res = DbModule_Delete(hContact, szModule);
+ INT_PTR res = db_delete_module(hContact, szModule);
lua_pushboolean(L, !res);
return 1;
|