From bda756f3ff7a4a06ee525fc9e200af86eb3e327f Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 10 Mar 2007 05:52:51 +0000 Subject: [PATCH] fixed a really dumb bug - shouldn't compilers be checking this? --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40592 --- core/vm/sp_vm_function.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/sp_vm_function.cpp b/core/vm/sp_vm_function.cpp index c7f3b5a6..1fe2f25b 100644 --- a/core/vm/sp_vm_function.cpp +++ b/core/vm/sp_vm_function.cpp @@ -135,7 +135,7 @@ int CFunction::PushArray(cell_t *inarray, unsigned int cells, cell_t **phys_addr *phys_addr = info->phys_addr; } - return true; + return SP_ERROR_NONE; } int CFunction::PushString(const char *string)