Fix argument order issue

release
Slava Pestov 2007-10-06 23:47:06 -04:00
parent 2b13c74dfa
commit ba6648f526
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ void throw_error(CELL error, F_STACK_FRAME *callstack_top)
not necessarily up to date at that point. */
if(callstack_top)
{
callstack_top = fix_callstack_top(
stack_chain->callstack_bottom,callstack_top);
callstack_top = fix_callstack_top(callstack_top,
stack_chain->callstack_bottom);
}
else
callstack_top = stack_chain->callstack_top;