diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-19 00:31:20 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-19 00:31:20 +0200 |
commit | 6c0741fbdee5bd0f8ed13ac287c4ab18e8ba7d83 (patch) | |
tree | 7513cdadc661cfe0bd1625145a4876e54df191ca /include | |
parent | [NETFILTER]: Solve Kconfig dependency problem (diff) | |
parent | [ARM] Fix warning in arch/arm/mach-sa1100/generic.c (diff) | |
download | linux-6c0741fbdee5bd0f8ed13ac287c4ab18e8ba7d83.tar.xz linux-6c0741fbdee5bd0f8ed13ac287c4ab18e8ba7d83.zip |
Merge master.kernel.org:/home/rmk/linux-2.6-arm
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/futex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-arm/futex.h b/include/asm-arm/futex.h index 2cac5ecd9d00..9feff4ce1424 100644 --- a/include/asm-arm/futex.h +++ b/include/asm-arm/futex.h @@ -14,7 +14,7 @@ futex_atomic_op_inuser (int encoded_op, int __user *uaddr) int cmp = (encoded_op >> 24) & 15; int oparg = (encoded_op << 8) >> 20; int cmparg = (encoded_op << 20) >> 20; - int oldval = 0, ret, tem; + int oldval = 0, ret; if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) oparg = 1 << oparg; |