diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-05-05 17:03:23 -0400 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2013-05-05 21:19:23 +0000 |
commit | 554c8beaab866e84ab65efee7de73708006495b8 (patch) | |
tree | 165130645655ab2b4c6251f2adb4d91a05b19071 | |
parent | 2f99788e8f41fbcf5202395707c969aecff64149 (diff) | |
download | strace-554c8beaab866e84ab65efee7de73708006495b8.tar.gz |
s390: fix # of args truncate64/ftruncate64 takes
* linux/s390/syscallent.h: Change nargs to 3 for truncate64/ftruncate64.
-rw-r--r-- | linux/s390/syscallent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/s390/syscallent.h b/linux/s390/syscallent.h index c79627aeb..264338009 100644 --- a/linux/s390/syscallent.h +++ b/linux/s390/syscallent.h @@ -221,8 +221,8 @@ { 0, TP, sys_vfork, "vfork" }, /* 190 */ { 2, 0, sys_getrlimit, "getrlimit" }, /* 191 */ { 1, TD|TM, sys_old_mmap_pgoff, "mmap2" }, /* 192 */ - { 2, TF, sys_truncate64, "truncate64" }, /* 193 */ - { 2, TD, sys_ftruncate64, "ftruncate64" }, /* 194 */ + { 3, TF, sys_truncate64, "truncate64" }, /* 193 */ + { 3, TD, sys_ftruncate64, "ftruncate64" }, /* 194 */ { 2, TF, sys_stat64, "stat64" }, /* 195 */ { 2, TF, sys_lstat64, "lstat64" }, /* 196 */ { 2, TD, sys_fstat64, "fstat64" }, /* 197 */ |