mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix typo
This commit is contained in:
parent
5c2b644166
commit
049e1f8560
1 changed files with 5 additions and 5 deletions
10
io.c
10
io.c
|
@ -9933,7 +9933,7 @@ do_ioctl(int fd, ioctl_req_t cmd, long narg)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define DEFULT_IOCTL_NARG_LEN (256)
|
#define DEFAULT_IOCTL_NARG_LEN (256)
|
||||||
|
|
||||||
#if defined(__linux__) && defined(_IOC_SIZE)
|
#if defined(__linux__) && defined(_IOC_SIZE)
|
||||||
static long
|
static long
|
||||||
|
@ -9943,14 +9943,14 @@ linux_iocparm_len(ioctl_req_t cmd)
|
||||||
|
|
||||||
if ((cmd & 0xFFFF0000) == 0) {
|
if ((cmd & 0xFFFF0000) == 0) {
|
||||||
/* legacy and unstructured ioctl number. */
|
/* legacy and unstructured ioctl number. */
|
||||||
return DEFULT_IOCTL_NARG_LEN;
|
return DEFAULT_IOCTL_NARG_LEN;
|
||||||
}
|
}
|
||||||
|
|
||||||
len = _IOC_SIZE(cmd);
|
len = _IOC_SIZE(cmd);
|
||||||
|
|
||||||
/* paranoia check for silly drivers which don't keep ioctl convention */
|
/* paranoia check for silly drivers which don't keep ioctl convention */
|
||||||
if (len < DEFULT_IOCTL_NARG_LEN)
|
if (len < DEFAULT_IOCTL_NARG_LEN)
|
||||||
len = DEFULT_IOCTL_NARG_LEN;
|
len = DEFAULT_IOCTL_NARG_LEN;
|
||||||
|
|
||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
@ -9972,7 +9972,7 @@ ioctl_narg_len(ioctl_req_t cmd)
|
||||||
len = linux_iocparm_len(cmd);
|
len = linux_iocparm_len(cmd);
|
||||||
#else
|
#else
|
||||||
/* otherwise guess at what's safe */
|
/* otherwise guess at what's safe */
|
||||||
len = DEFULT_IOCTL_NARG_LEN;
|
len = DEFAULT_IOCTL_NARG_LEN;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return len;
|
return len;
|
||||||
|
|
Loading…
Reference in a new issue