From 4ff9786c67f7c7180f33ec146e9acc9ce90adfa9 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sun, 13 Mar 2011 15:44:02 +0100 Subject: Fix trivial "endianness bugs" Replace endianess -> endianness. Signed-off-by: Stefan Weil Signed-off-by: Aurelien Jarno --- block/vdi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'block/vdi.c') 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; -- cgit v1.2.3