synced and fixed linux build

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40635
This commit is contained in:
Borja Ferrer 2007-03-16 18:05:47 +00:00
parent c9f81b9b11
commit d5ca9a3872
2 changed files with 4 additions and 4 deletions

View File

@ -26,8 +26,8 @@ OBJECTS = AdminCache.cpp CDataPack.cpp ConCmdManager.cpp ConVarManager.cpp \
sourcemm_api.cpp sourcemod.cpp
OBJECTS += smn_admin.cpp smn_bitbuffer.cpp smn_console.cpp smn_core.cpp \
smn_datapacks.cpp smn_entities.cpp smn_events.cpp smn_fakenatives.cpp \
smn_filesystem.cpp smn_float.cpp smn_halflife.cpp smn_handles.cpp smn_lang.cpp \
smn_player.cpp smn_sorting.cpp smn_textparse.cpp smn_usermsgs.cpp
smn_filesystem.cpp smn_float.cpp smn_functions.cpp smn_halflife.cpp smn_handles.cpp smn_lang.cpp \
smn_player.cpp smn_string.cpp smn_sorting.cpp smn_textparse.cpp smn_timers.cpp smn_usermsgs.cpp
OBJECTS += systems/ExtensionSys.cpp systems/ForwardSys.cpp systems/HandleSys.cpp \
systems/LibrarySys.cpp systems/PluginInfoDatabase.cpp systems/PluginSys.cpp \
systems/ShareSys.cpp vm/sp_vm_basecontext.cpp vm/sp_vm_engine.cpp \

View File

@ -442,7 +442,7 @@ static cell_t sm_CallPushArray(IPluginContext *pContext, const cell_t *params)
pContext->LocalToPhysAddr(params[1], &addr);
err = s_pCallable->PushArray(addr, params[2], NULL);
err = s_pCallable->PushArray(addr, params[2]);
if (err)
{
@ -528,7 +528,7 @@ static cell_t sm_CallPushStringEx(IPluginContext *pContext, const cell_t *params
static cell_t sm_CallFinish(IPluginContext *pContext, const cell_t *params)
{
int err;
int err = SP_ERROR_NOT_RUNNABLE;
cell_t *result;
if (!s_CallStarted)