57,58c57
< * side-effect of the getSyscallArg method which is why the LHS
< * needs the "-1".
---
> * side-effect of the getSyscallArg method.
60,61c59,61
< for (int index = 0; index < 6; )
< arg[index - 1] = process->getSyscallArg(tc, index);
---
> int index = 0;
> for (int i = 0; i < 6; i++)
> arg[i] = process->getSyscallArg(tc, index);