diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-06-17 09:55:35 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-06-17 09:55:35 +0200 |
commit | 12fadb1602dcf0ce4c4ec71ea60f36fe39013378 (patch) | |
tree | 2dff5a99120b7446e325fe30bceb05b66f0b1a7c | |
parent | e1c051153cdc08f23e95724f45f6d999bedeb3e3 (diff) | |
download | gnumach-12fadb1602dcf0ce4c4ec71ea60f36fe39013378.tar.gz gnumach-12fadb1602dcf0ce4c4ec71ea60f36fe39013378.tar.bz2 gnumach-12fadb1602dcf0ce4c4ec71ea60f36fe39013378.zip |
Re-fix typo
* machine/lock.h (_simple_lock_xchg_): Remove spurious parenthesis.
-rw-r--r-- | i386/i386/lock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/i386/lock.h b/i386/i386/lock.h index 12d97021..8efa0ca0 100644 --- a/i386/i386/lock.h +++ b/i386/i386/lock.h @@ -47,7 +47,7 @@ ({ int _old_val_; \ asm volatile("xchgl %0, %2" \ : "=r" (_old_val_) \ - : "0" (new_val), "m" (*(lock)) : "memory") \ + : "0" (new_val), "m" (*(lock)) : "memory" \ ); \ _old_val_; \ }) |