From: Andreas Schwab Date: Wed, 1 Feb 2012 11:50:48 +0000 (+0100) Subject: ata_id: fix identify string fixup X-Git-Tag: 181~3 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=2b2823b4b5c41ec629e346cc6dc8407f1d519eb4;p=elogind.git ata_id: fix identify string fixup --- diff --git a/src/extras/ata_id/ata_id.c b/src/extras/ata_id/ata_id.c index 7c3be71a3..257f49449 100644 --- a/src/extras/ata_id/ata_id.c +++ b/src/extras/ata_id/ata_id.c @@ -307,8 +307,8 @@ static void disk_identify_get_string(uint8_t identify[512], assert((dest_len & 1) == 0); while (dest_len > 0) { - c1 = ((uint16_t *) identify)[offset_words] >> 8; - c2 = ((uint16_t *) identify)[offset_words] & 0xff; + c1 = identify[offset_words * 2 + 1]; + c2 = identify[offset_words * 2]; *dest = c1; dest++; *dest = c2;