Fix compile warning

db4
Slava Pestov 2008-11-08 20:40:09 -06:00
parent f53e9c654c
commit fdbea06e27
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ CELL frame_executing(F_STACK_FRAME *frame)
F_STACK_FRAME *frame_successor(F_STACK_FRAME *frame)
{
if(frame->size == 0)
critical_error("Stack frame has zero size",frame);
critical_error("Stack frame has zero size",(CELL)frame);
return (F_STACK_FRAME *)((CELL)frame - frame->size);
}