From: Linus Torvalds Date: Sat, 12 Oct 2002 10:15:31 +0000 (-0700) Subject: Fix type - it used to be "__u8 short", which previous versions X-Git-Tag: v2.5.43~56 X-Git-Url: http://git.neil.brown.name/?a=commitdiff_plain;h=e4192bb64de3ca87c3a9e1188c4d884c2e30635d;p=history.git Fix type - it used to be "__u8 short", which previous versions of gcc incorrectly accepted as "short". It got fixed to __u8, but it really should be __u16. --- diff --git a/drivers/ide/ide-cd.h b/drivers/ide/ide-cd.h index 7d95d5f4186c..2455e002bfad 100644 --- a/drivers/ide/ide-cd.h +++ b/drivers/ide/ide-cd.h @@ -437,7 +437,7 @@ struct atapi_mechstat_header { byte curlba[3]; byte nslots; - __u8 slot_tablelen; + __u16 slot_tablelen; };