From 65aa87c7142b6d6ff34dba48ca68742465d5a007 Mon Sep 17 00:00:00 2001
From: Joerg Wunsch <j@uriah.heep.sax.de>
Date: Mon, 2 Sep 2013 09:57:09 +0000
Subject: [PATCH] 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
---
 usbasp.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/usbasp.c b/usbasp.c
index ae940ebb..e3e6168b 100644
--- a/usbasp.c
+++ b/usbasp.c
@@ -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;
 }