diff options
author | Stefan Weil <weil@mail.berlios.de> | 2011-03-13 15:44:02 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-04-03 21:42:57 +0200 |
commit | 4ff9786c67f7c7180f33ec146e9acc9ce90adfa9 (patch) | |
tree | ea0d8ee051b025347f3ea54c280ac9fa41735788 /target-mips | |
parent | 2055283bcc8292fd63c772ed90a2502f427b2174 (diff) |
Fix trivial "endianness bugs"
Replace endianess -> endianness.
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-mips')
-rw-r--r-- | target-mips/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-mips/cpu.h b/target-mips/cpu.h index 2419aa93d2..0b98d10266 100644 --- a/target-mips/cpu.h +++ b/target-mips/cpu.h @@ -63,7 +63,7 @@ union fpr_t { uint32_t w[2]; /* binary single fixed-point */ }; /* define FP_ENDIAN_IDX to access the same location - * in the fpr_t union regardless of the host endianess + * in the fpr_t union regardless of the host endianness */ #if defined(HOST_WORDS_BIGENDIAN) # define FP_ENDIAN_IDX 1 |