From: zwelch Date: Wed, 6 May 2009 23:28:38 +0000 (+0000) Subject: Fix pointer cast alignment warnings in target/image.c. X-Git-Tag: v0.2.0~881 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5f45a3d1df6023da23b5438871e5e457777da75b;p=openocd Fix pointer cast alignment warnings in target/image.c. git-svn-id: svn://svn.berlios.de/openocd/trunk@1624 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/src/target/image.c b/src/target/image.c index 2b6d0d11..8a166d68 100644 --- a/src/target/image.c +++ b/src/target/image.c @@ -217,7 +217,9 @@ static int image_ihex_buffer_complete(image_t *image) while (count-- > 0) { - sscanf(&lpszLine[bytes_read], "%2x", (u32*)&ihex->buffer[cooked_bytes]); + unsigned value; + sscanf(&lpszLine[bytes_read], "%2x", &value); + ihex->buffer[cooked_bytes] = (u8)value; cal_checksum += (u8)ihex->buffer[cooked_bytes]; bytes_read += 2; cooked_bytes += 1; @@ -594,7 +596,9 @@ static int image_mot_buffer_complete(image_t *image) while (count-- > 0) { - sscanf(&lpszLine[bytes_read], "%2x", (u32*)&mot->buffer[cooked_bytes]); + unsigned value; + sscanf(&lpszLine[bytes_read], "%2x", &value); + mot->buffer[cooked_bytes] = (u8)value; cal_checksum += (u8)mot->buffer[cooked_bytes]; bytes_read += 2; cooked_bytes += 1;