From 80452fb3ecbd828542cef16c665680c805e02715 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 29 Aug 2007 02:43:07 +0000 Subject: [PATCH] fixed linux build --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401394 --- core/systems/PluginSys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/systems/PluginSys.cpp b/core/systems/PluginSys.cpp index 1a7b5520..8e0c1e83 100644 --- a/core/systems/PluginSys.cpp +++ b/core/systems/PluginSys.cpp @@ -1867,7 +1867,7 @@ void CPluginManager::RegisterNativesFromCore(sp_nativeinfo_t *natives) { for (unsigned int i = 0; natives[i].func != NULL; i++) { - sm_trie_insert(m_pCoreNatives, natives[i].name, natives[i].func); + sm_trie_insert(m_pCoreNatives, natives[i].name, (void *)natives[i].func); } }