diff options
author | Michele Calgaro <[email protected]> | 2020-01-30 20:17:53 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-01-30 20:17:53 +0900 |
commit | 3a41a0210cd53bc86a0988762fef0c8c2bca08dd (patch) | |
tree | aa3bc523841881bf6dea934307a145b17d945a27 /iso/libisofs/bswap.h | |
parent | 82329dd8903ffe2350c0c1cda8682da9a35cbc35 (diff) | |
download | krusader-3a41a0210cd53bc86a0988762fef0c8c2bca08dd.tar.gz krusader-3a41a0210cd53bc86a0988762fef0c8c2bca08dd.zip |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'iso/libisofs/bswap.h')
-rw-r--r-- | iso/libisofs/bswap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iso/libisofs/bswap.h b/iso/libisofs/bswap.h index 95520c6..bda19c0 100644 --- a/iso/libisofs/bswap.h +++ b/iso/libisofs/bswap.h @@ -39,7 +39,7 @@ inline static unsigned int ByteSwap32(unsigned int x) inline static unsigned long long int ByteSwap64(unsigned long long int x) { - register union { __extension__ unsigned long long int __ll; + union { __extension__ unsigned long long int __ll; unsigned int __l[2]; } __x; asm("xchgl %0,%1": "=r"(__x.__l[0]),"=r"(__x.__l[1]): |