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 | da6a0e19f8d5fe3bccf5b0d72fecae441b7bd693 (patch) | |
tree | ea0d8ee051b025347f3ea54c280ac9fa41735788 /block | |
parent | 3d77bc95e8371d966923795f8a24f2601f7d8a84 (diff) | |
download | qemu-da6a0e19f8d5fe3bccf5b0d72fecae441b7bd693.tar.gz qemu-da6a0e19f8d5fe3bccf5b0d72fecae441b7bd693.tar.bz2 qemu-da6a0e19f8d5fe3bccf5b0d72fecae441b7bd693.zip |
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 'block')
-rw-r--r-- | block/vdi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/vdi.c b/block/vdi.c index 90540792d3..701745bf8c 100644 --- a/block/vdi.c +++ b/block/vdi.c @@ -113,7 +113,7 @@ void uuid_unparse(const uuid_t uu, char *out); */ #define VDI_TEXT "<<< QEMU VM Virtual Disk Image >>>\n" -/* Unallocated blocks use this index (no need to convert endianess). */ +/* Unallocated blocks use this index (no need to convert endianness). */ #define VDI_UNALLOCATED UINT32_MAX #if !defined(CONFIG_UUID) @@ -194,7 +194,7 @@ typedef struct { uint32_t block_sectors; /* First sector of block map. */ uint32_t bmap_sector; - /* VDI header (converted to host endianess). */ + /* VDI header (converted to host endianness). */ VdiHeader header; } BDRVVdiState; |