bug #43002 usbasp debug output typo
* usbasp.c: fixed typos git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1330 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
a226a8a922
commit
b3982b24f8
|
@ -1,3 +1,8 @@
|
||||||
|
2014-08-18 Rene Liebscher <R.Liebscher@gmx.de>
|
||||||
|
|
||||||
|
bug #43002 usbasp debug output typo
|
||||||
|
* usbasp.c: fixed typos
|
||||||
|
|
||||||
2014-07-16 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
2014-07-16 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
|
||||||
|
|
||||||
bug #42662 clang warnings under FreeBSD 10.x
|
bug #42662 clang warnings under FreeBSD 10.x
|
||||||
|
|
4
usbasp.c
4
usbasp.c
|
@ -624,7 +624,7 @@ static int usbasp_initialize(PROGRAMMER * pgm, AVRPART * p)
|
||||||
static int usbasp_spi_cmd(PROGRAMMER * pgm, const unsigned char *cmd,
|
static int usbasp_spi_cmd(PROGRAMMER * pgm, const unsigned char *cmd,
|
||||||
unsigned char *res)
|
unsigned char *res)
|
||||||
{
|
{
|
||||||
avrdude_message(MSG_DEBUG, "%s: usbasp_cpi_cmd(0x%02x, 0x%02x, 0x%02x, 0x%02x)%s",
|
avrdude_message(MSG_DEBUG, "%s: usbasp_spi_cmd(0x%02x, 0x%02x, 0x%02x, 0x%02x)%s",
|
||||||
progname, cmd[0], cmd[1], cmd[2], cmd[3],
|
progname, cmd[0], cmd[1], cmd[2], cmd[3],
|
||||||
verbose > 3? "...\n": "");
|
verbose > 3? "...\n": "");
|
||||||
|
|
||||||
|
@ -639,7 +639,7 @@ static int usbasp_spi_cmd(PROGRAMMER * pgm, const unsigned char *cmd,
|
||||||
progname);
|
progname);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
avrdude_message(MSG_TRACE, "%s: usbasp_cpi_cmd()", progname);
|
avrdude_message(MSG_TRACE, "%s: usbasp_spi_cmd()", progname);
|
||||||
avrdude_message(MSG_DEBUG, " => 0x%02x, 0x%02x, 0x%02x, 0x%02x\n",
|
avrdude_message(MSG_DEBUG, " => 0x%02x, 0x%02x, 0x%02x, 0x%02x\n",
|
||||||
res[0], res[1], res[2], res[3]);
|
res[0], res[1], res[2], res[3]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue