Compiling git ftdi-eeprom against git libusb-0 gives warnings about the wrong casts -- Uwe Bonnes [email protected]
Institut fuer Kernphysik Schlossgartenstrasse 9 64289 Darmstadt --------- Tel. 06151 162516 -------- Fax. 06151 164321 ---------- >From 7702776bdcaa009422b558221553b652c2d5662f Mon Sep 17 00:00:00 2001 From: Uwe Bonnes <[email protected]> Date: Sat, 26 Jun 2010 13:44:34 +0200 Subject: Remove wrong casts --- src/main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index fde53e8..03c9eb5 100644 --- a/src/main.c +++ b/src/main.c @@ -158,7 +158,7 @@ int main(int argc, char *argv[]) if (_read > 0) { - printf("FTDI read eeprom: %d\n", ftdi_read_eeprom(&ftdi, (char *)eeprom_buf)); + printf("FTDI read eeprom: %d\n", ftdi_read_eeprom(&ftdi, eeprom_buf)); ftdi_eeprom_decode(&eeprom, eeprom_buf, ftdi.eeprom_size); /* Debug output */ @@ -222,7 +222,7 @@ int main(int argc, char *argv[]) fclose(fp); } } - printf ("FTDI write eeprom: %d\n", ftdi_write_eeprom(&ftdi, (char *)eeprom_buf)); + printf ("FTDI write eeprom: %d\n", ftdi_write_eeprom(&ftdi, eeprom_buf)); } // Write to file? -- 1.6.4.2 -- libftdi - see http://www.intra2net.com/en/developer/libftdi for details. To unsubscribe send a mail to [email protected]
