- 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:
2017-04-07 10:01:03 +02:00
parent 3abcb4fb1c
commit a7626beeb7
3 changed files with 16 additions and 6 deletions

4
fsm.c
View File

@@ -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 */
}