summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io.c b/io.c
index 6e4c7e7d76..d5b10ee141 100644
--- a/io.c
+++ b/io.c
@@ -1955,6 +1955,8 @@ f_syscall(argc, argv)
*/
rb_secure(2);
+ if (argc == 0)
+ ArgError("too few arguments for syscall");
arg[0] = NUM2INT(argv[0]); argv++;
while (items--) {
if (FIXNUM_P(*argv)) {
@@ -1968,8 +1970,6 @@ f_syscall(argc, argv)
i++;
}
switch (argc) {
- case 0:
- ArgError("Too few args to syscall");
case 1:
retval = syscall(arg[0]);
break;