patch #8895: Spelling in 6.2 code
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1373 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
1e05c4339f
commit
c686946563
|
@ -1,3 +1,8 @@
|
||||||
|
2016-02-15 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
|
patch #8895: Spelling in 6.2 code
|
||||||
|
* avrftdi.c (avrftdi_open): Spell fix.
|
||||||
|
|
||||||
2016-02-15 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2016-02-15 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
patch #8896: Silence cppcheck warnings in 6.2 code
|
patch #8896: Silence cppcheck warnings in 6.2 code
|
||||||
|
|
1
NEWS
1
NEWS
|
@ -28,6 +28,7 @@ Current:
|
||||||
- patch #8435: Implementing mEDBG CMSIS-DAP protocol
|
- patch #8435: Implementing mEDBG CMSIS-DAP protocol
|
||||||
- patch #8735: ATtiny28 support in avrdude.conf
|
- patch #8735: ATtiny28 support in avrdude.conf
|
||||||
- patch #8896: Silence cppcheck warnings in 6.2 code
|
- patch #8896: Silence cppcheck warnings in 6.2 code
|
||||||
|
- patch #8895: Spelling in 6.2 code
|
||||||
|
|
||||||
* Internals:
|
* Internals:
|
||||||
|
|
||||||
|
|
|
@ -703,7 +703,7 @@ static int avrftdi_open(PROGRAMMER * pgm, char *port)
|
||||||
|
|
||||||
err = ftdi_usb_open_desc_index(pdata->ftdic, vid, pid, desc, serial, index);
|
err = ftdi_usb_open_desc_index(pdata->ftdic, vid, pid, desc, serial, index);
|
||||||
if(err) {
|
if(err) {
|
||||||
log_err("Error %d occured: %s\n", err, ftdi_get_error_string(pdata->ftdic));
|
log_err("Error %d occurred: %s\n", err, ftdi_get_error_string(pdata->ftdic));
|
||||||
//stupid hack, because avrdude calls pgm->close() even when pgm->open() fails
|
//stupid hack, because avrdude calls pgm->close() even when pgm->open() fails
|
||||||
//and usb_dev is intialized to the last usb device from probing
|
//and usb_dev is intialized to the last usb device from probing
|
||||||
pdata->ftdic->usb_dev = NULL;
|
pdata->ftdic->usb_dev = NULL;
|
||||||
|
|
Loading…
Reference in New Issue