diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-10 15:29:15 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-10 15:29:15 +0000 |
commit | af325d36e02e83ea60046225dc0ae6c2402abfac (patch) | |
tree | 1e0a711604ae8ec44b669e7b26d859021f308c15 /linux-user | |
parent | 0d5bd3631f56bfed85db2896daa3c8ce932c5859 (diff) | |
download | hqemu-af325d36e02e83ea60046225dc0ae6c2402abfac.zip hqemu-af325d36e02e83ea60046225dc0ae6c2402abfac.tar.gz |
Fix typo, by Laurent Desnogues.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4726 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index c99c5ff..cd90946 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -3070,7 +3070,7 @@ void syscall_init(void) #if TARGET_ABI_BITS == 32 static inline uint64_t target_offset64(uint32_t word0, uint32_t word1) { -#ifdef TARGET_WORDS_BIG_ENDIAN +#ifdef TARGET_WORDS_BIGENDIAN return ((uint64_t)word0 << 32) | word1; #else return ((uint64_t)word1 << 32) | word0; |