- arrobj.c: fixed bug when format sepcifier in array content
- fsm.c: fixed bug - ipsdriv.c: fixed problem with old PS: no negative field, resolution
This commit is contained in:
4
fsm.c
4
fsm.c
@@ -156,10 +156,8 @@ int FsmStop(Fsm * task, FsmFunc func)
|
||||
if (i == task->sp) { /* not found on stack */
|
||||
if (func != task->func)
|
||||
return 0; /* is also not running function */\
|
||||
/*
|
||||
task->sp = 0;
|
||||
task->func = task->stack[0].func; */ /* pretty unsure about this */
|
||||
|
||||
task->func = task->stack[0].func; /* pretty unsure about this */
|
||||
} else {
|
||||
task->sp = i; /* unwind stack to level i */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user