Commit af325d36e02e83ea60046225dc0ae6c2402abfac

Authored by ths
1 parent 0d5bd363

Fix typo, by Laurent Desnogues.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4726 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
linux-user/syscall.c
... ... @@ -3070,7 +3070,7 @@ void syscall_init(void)
3070 3070 #if TARGET_ABI_BITS == 32
3071 3071 static inline uint64_t target_offset64(uint32_t word0, uint32_t word1)
3072 3072 {
3073   -#ifdef TARGET_WORDS_BIG_ENDIAN
  3073 +#ifdef TARGET_WORDS_BIGENDIAN
3074 3074 return ((uint64_t)word0 << 32) | word1;
3075 3075 #else
3076 3076 return ((uint64_t)word1 << 32) | word0;
... ...