Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2016-03-01 00:59:19 +0300
committerDavid Benjamin <davidben@google.com>2016-03-01 01:01:04 +0300
commit42c8c63fcbb53642674da648924e61d4aa65b67c (patch)
treef018a84bbf6e6d369a4c203b7d520b81eb59c338 /crypto/modes
parentd7305d50e4dbc16edc2f22133b7daae2cd1724f2 (diff)
Fix build.
Forgot to delete a line. Change-Id: Ia1fb2904398816d495045dc237337f0be5b09272 Reviewed-on: https://boringssl-review.googlesource.com/7250 Reviewed-by: Steven Valdez <svaldez@google.com> Reviewed-by: David Benjamin <davidben@google.com>
Diffstat (limited to 'crypto/modes')
-rw-r--r--crypto/modes/ctr.c1
1 files changed, 0 insertions, 1 deletions
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;