diff options
author | Chris Packham <chris.packham@alliedtelesis.co.nz> | 2019-10-21 04:43:36 +0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2019-10-24 21:10:06 +0300 |
commit | b275fb6013df5d9c17702491bf4533d559561515 (patch) | |
tree | 3029758a9d712ff3686b90f143c6ed97c3b04dbf /Documentation/process | |
parent | 98919f4c9a3421695b182f0244b34b62045d08ff (diff) | |
download | linux-b275fb6013df5d9c17702491bf4533d559561515.tar.xz |
docs: ioctl: fix typo
"pointres" should be "pointers".
Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/process')
-rw-r--r-- | Documentation/process/botching-up-ioctls.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/process/botching-up-ioctls.rst b/Documentation/process/botching-up-ioctls.rst index ac697fef3545..2d4829b2fb09 100644 --- a/Documentation/process/botching-up-ioctls.rst +++ b/Documentation/process/botching-up-ioctls.rst @@ -46,7 +46,7 @@ will need to add a 32-bit compat layer: conversion or worse, fiddle the raw __u64 through your code since that diminishes the checking tools like sparse can provide. The macro u64_to_user_ptr can be used in the kernel to avoid warnings about integers - and pointres of different sizes. + and pointers of different sizes. Basics |