Commit fca743f307526ffc561d948eda584788c40ece83
1 parent
f9d43072
SH4 Fix missing 6th arg of syscall, by "takasi-y".
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3711 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
linux-user/main.c
@@ -1613,7 +1613,7 @@ void cpu_loop (CPUState *env) | @@ -1613,7 +1613,7 @@ void cpu_loop (CPUState *env) | ||
1613 | env->gregs[6], | 1613 | env->gregs[6], |
1614 | env->gregs[7], | 1614 | env->gregs[7], |
1615 | env->gregs[0], | 1615 | env->gregs[0], |
1616 | - 0); | 1616 | + env->gregs[1]); |
1617 | env->gregs[0] = ret; | 1617 | env->gregs[0] = ret; |
1618 | env->pc += 2; | 1618 | env->pc += 2; |
1619 | break; | 1619 | break; |