From: Paweł Sikora Date: Sun, 30 May 2004 23:33:33 +0000 (+0000) Subject: - __attribute__((packed)) fixed. X-Git-Tag: auto/ac/eagle-usb-1_9_6-0_6~17 X-Git-Url: http://git.pld-linux.org/?p=packages%2Feagle-usb.git;a=commitdiff_plain;h=1ad1b62305f630570a7113502b0569b52f46e738 - __attribute__((packed)) fixed. Changed files: eagle-usb-eu_types.patch -> 1.1 --- diff --git a/eagle-usb-eu_types.patch b/eagle-usb-eu_types.patch new file mode 100644 index 0000000..e39361b --- /dev/null +++ b/eagle-usb-eu_types.patch @@ -0,0 +1,23 @@ +--- eagle-usb-1.9.6/driver/eu_types.h.orig 2004-02-22 22:11:30.000000000 +0100 ++++ eagle-usb-1.9.6/driver/eu_types.h 2004-05-31 01:31:02.547799648 +0200 +@@ -155,13 +155,13 @@ + */ + typedef struct + { +- uint8_t bRequestType; +- uint8_t bRequest; +- uint16_t wValue; +- uint16_t wIndex; +- uint16_t wLength; +- uint8_t data[20]; +-} eu_cdc_t __attribute__ ((packed)); ++ uint8_t bRequestType __attribute__ ((packed)); ++ uint8_t bRequest __attribute__ ((packed)); ++ uint16_t wValue __attribute__ ((packed)); ++ uint16_t wIndex __attribute__ ((packed)); ++ uint16_t wLength __attribute__ ((packed)); ++ uint8_t data[20] __attribute__ ((packed)); ++} eu_cdc_t; + + + /**