From: Uwe Bonnes Date: Wed, 15 Sep 2010 15:33:39 +0000 (+0200) Subject: EEPROM: Add missing closing brace X-Git-Tag: v1.0rc1~133^2~54 X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=commitdiff_plain;h=b4d19dead949a262c14af0a4515e7fbceac69373 EEPROM: Add missing closing brace --- diff --git a/src/ftdi.c b/src/ftdi.c index c9492f5..7d27134 100644 --- a/src/ftdi.c +++ b/src/ftdi.c @@ -105,7 +105,7 @@ int ftdi_init(struct ftdi_context *ftdi) if (eeprom == 0) ftdi_error_return(-2, "Can't malloc struct ftdi_eeprom"); - memset(eeprom, 0, sizeof(struct ftdi_eeprom); + memset(eeprom, 0, sizeof(struct ftdi_eeprom)); ftdi->eeprom = eeprom; /* All fine. Now allocate the readbuffer */