diff options
| author | David S. Miller <davem@nuts.davemloft.net> | 2004-08-26 23:45:44 -0700 |
|---|---|---|
| committer | David S. Miller <davem@nuts.davemloft.net> | 2004-08-26 23:45:44 -0700 |
| commit | 926c137ba55da581d091ff4c91d51357ee3af8f1 (patch) | |
| tree | 04ff7492f98f03e29b013466b1a8e855f09ccecd /include/asm-generic | |
| parent | a6ee9b32bc33269e8f7bb98da2143c90fba620d6 (diff) | |
[UACCESS]: Fix typo in generic __get_user_unaligned().
Signed-off-by: David S. Miller <davem@redhat.com>
Diffstat (limited to 'include/asm-generic')
| -rw-r--r-- | include/asm-generic/uaccess.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-generic/uaccess.h b/include/asm-generic/uaccess.h index 4d62a1cf543d..549cb3a1640a 100644 --- a/include/asm-generic/uaccess.h +++ b/include/asm-generic/uaccess.h @@ -9,7 +9,7 @@ ({ \ __typeof__ (*(ptr)) __x; \ __copy_from_user(&__x, (ptr), sizeof(*(ptr))) ? -EFAULT : 0; \ - (x) = _x; \ + (x) = __x; \ }) |
