From 42c8c63fcbb53642674da648924e61d4aa65b67c Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Mon, 29 Feb 2016 16:59:19 -0500 Subject: [PATCH] Fix build. Forgot to delete a line. Change-Id: Ia1fb2904398816d495045dc237337f0be5b09272 Reviewed-on: https://boringssl-review.googlesource.com/7250 Reviewed-by: Steven Valdez Reviewed-by: David Benjamin --- crypto/modes/ctr.c | 1 - 1 file changed, 1 deletion(-) diff --git a/crypto/modes/ctr.c b/crypto/modes/ctr.c index f6f74626..b84e72c5 100644 --- a/crypto/modes/ctr.c +++ b/crypto/modes/ctr.c @@ -143,7 +143,6 @@ void CRYPTO_ctr128_encrypt(const uint8_t *in, uint8_t *out, size_t len, /* increment upper 96 bits of 128-bit counter by 1 */ static void ctr96_inc(uint8_t *counter) { uint32_t n = 12, c = 1; - uint8_t c; do { --n;