- 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

View File

@ -138,7 +138,7 @@ static int ArrayItems(void *object, void *arg, int argc, char *argv[])
if (p > result)
p--;
*p = '\0';
ParPrintf(object, eValue, result);
ParPrintf(object, eValue, "%s", result);
free(result);
}
return 1;