Fix C99-ism in bio_test.c.

Change-Id: I7cd91d79f3a014de367976318c860914dd4c2f49
Reviewed-on: https://boringssl-review.googlesource.com/1392
Reviewed-by: Adam Langley <agl@google.com>
diff --git a/crypto/bio/bio_test.c b/crypto/bio/bio_test.c
index a8e46ab..f3075b8 100644
--- a/crypto/bio/bio_test.c
+++ b/crypto/bio/bio_test.c
@@ -102,7 +102,7 @@
   char string[1024];
   int ret;
   const uint8_t *contents;
-  size_t len;
+  size_t i, len;
 
   bio = BIO_new(BIO_s_mem());
   if (!bio) {
@@ -110,7 +110,7 @@
     return 0;
   }
 
-  for (size_t i = 0; i < sizeof(kLengths) / sizeof(kLengths[0]); i++) {
+  for (i = 0; i < sizeof(kLengths) / sizeof(kLengths[0]); i++) {
     if (kLengths[i] >= sizeof(string)) {
       fprintf(stderr, "Bad test string length\n");
       return 0;