Commit 926c137b authored by David S. Miller's avatar David S. Miller

[UACCESS]: Fix typo in generic __get_user_unaligned().

Signed-off-by: default avatarDavid S. Miller <davem@redhat.com>
parent a6ee9b32
......@@ -9,7 +9,7 @@
({ \
__typeof__ (*(ptr)) __x; \
__copy_from_user(&__x, (ptr), sizeof(*(ptr))) ? -EFAULT : 0; \
(x) = _x; \
(x) = __x; \
})
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment