Add a missing pair of braces.

Thanks to Joakim Lubeck for spotting this.



git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1193 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Joerg Wunsch 2013-09-02 09:57:09 +00:00
parent 7750c81463
commit 65aa87c714
1 changed files with 2 additions and 1 deletions

View File

@ -651,11 +651,12 @@ static int usbasp_spi_cmd(PROGRAMMER * pgm, unsigned char cmd[4],
progname);
return -1;
}
if (verbose > 2)
if (verbose > 2) {
if (verbose > 3)
fprintf(stderr, "%s: usbasp_cpi_cmd()", progname);
fprintf(stderr, " => 0x%02x, 0x%02x, 0x%02x, 0x%02x\n",
res[0], res[1], res[2], res[3]);
}
return 0;
}