stk500v2_program_enable(): Fix a typo (synchloops vs. synchcycles).

git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@598 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
joerg_wunsch 2006-08-09 19:56:48 +00:00
parent 4222bfe99a
commit e0569f3a29
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-08-09 Joerg Wunsch <j@uriah.heep.sax.de>
* stk500v2.c (stk500v2_program_enable): Fix a typo
(synchloops vs. synchcycles).
2006-08-04 Joerg Wunsch <j@uriah.heep.sax.de>
* avrdude.conf.in: Add parallel programming definitions for

View File

@ -504,7 +504,7 @@ static int stk500v2_program_enable(PROGRAMMER * pgm, AVRPART * p)
buf[1] = p->timeout;
buf[2] = p->stabdelay;
buf[3] = p->cmdexedelay;
buf[4] = p->synchcycles;
buf[4] = p->synchloops;
buf[5] = p->bytedelay;
buf[6] = p->pollvalue;
buf[7] = p->pollindex;