summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-10-25 10:03:17 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-10-26 14:43:12 +0900
commit049e1f8560d2f5c06afa6b8fbcf7d4c8e0132561 (patch)
tree51f91769920da9a521abd6b139210a797beb488c /io.c
parent5c2b6441660cdabf1efc745c25f2b1a41bb3b087 (diff)
Fix typo
Diffstat (limited to 'io.c')
-rw-r--r--io.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/io.c b/io.c
index fceb7019f1..38f51a3dac 100644
--- a/io.c
+++ b/io.c
@@ -9933,7 +9933,7 @@ do_ioctl(int fd, ioctl_req_t cmd, long narg)
}
#endif
-#define DEFULT_IOCTL_NARG_LEN (256)
+#define DEFAULT_IOCTL_NARG_LEN (256)
#if defined(__linux__) && defined(_IOC_SIZE)
static long
@@ -9943,14 +9943,14 @@ linux_iocparm_len(ioctl_req_t cmd)
if ((cmd & 0xFFFF0000) == 0) {
/* legacy and unstructured ioctl number. */
- return DEFULT_IOCTL_NARG_LEN;
+ return DEFAULT_IOCTL_NARG_LEN;
}
len = _IOC_SIZE(cmd);
/* paranoia check for silly drivers which don't keep ioctl convention */
- if (len < DEFULT_IOCTL_NARG_LEN)
- len = DEFULT_IOCTL_NARG_LEN;
+ if (len < DEFAULT_IOCTL_NARG_LEN)
+ len = DEFAULT_IOCTL_NARG_LEN;
return len;
}
@@ -9972,7 +9972,7 @@ ioctl_narg_len(ioctl_req_t cmd)
len = linux_iocparm_len(cmd);
#else
/* otherwise guess at what's safe */
- len = DEFULT_IOCTL_NARG_LEN;
+ len = DEFAULT_IOCTL_NARG_LEN;
#endif
return len;