]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/callstack.cpp
vm: replace assert with FACTOR_ASSERT
[factor.git] / vm / callstack.cpp
index 0be681d41c80d44c83dcbdfeffb6385fce3f65f0..58e1a364d748d47d2ce48d2e39765f0706e86c01 100755 (executable)
@@ -7,7 +7,7 @@ void factor_vm::check_frame(stack_frame *frame)
 {
 #ifdef FACTOR_DEBUG
        check_code_pointer((cell)frame->entry_point);
-       assert(frame->size != 0);
+       FACTOR_ASSERT(frame->size != 0);
 #endif
 }