From: Yaroslav Halchenko <debian@onerussian.com>
Author: Aurelien Jarno <aurel32@debian.org>
Subject: do not delcare within loop declaration
Bug: 633346


--- a/biosig.c
+++ b/biosig.c
@@ -561,7 +561,8 @@
 	typedef uint64_t iType;
 #if __BYTE_ORDER == __BIG_ENDIAN
         if (FLAG_SWAP) {
-                for (unsigned k=len; k < sizeof(iType); buf[k++]=0);
+                unsigned k;
+                for (k=len; k < sizeof(iType); buf[k++]=0);
                 *(iType*)buf = bswap_64(*(iType*)buf);
         }
         else
