commit | b9e4e2c97a2e448090ff3fcc0f99b8f6dbc08897 | [log] [tgz] |
---|---|---|
author | Paul Bakker <p.j.bakker@polarssl.org> | Thu May 01 14:18:25 2014 +0200 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Thu May 01 14:18:25 2014 +0200 |
tree | c061a60f01d15b67ed942fef5aab93e04e1aecb1 | |
parent | 9af723cee7cc4090e5f8c38a0924ec5d420c30a3 [diff] [blame] |
Fix formatting: fix some 'easy' > 80 length lines
diff --git a/library/ctr_drbg.c b/library/ctr_drbg.c index 6203fce..2b507d2 100644 --- a/library/ctr_drbg.c +++ b/library/ctr_drbg.c
@@ -336,7 +336,8 @@ */ aes_crypt_ecb( &ctx->aes_ctx, AES_ENCRYPT, ctx->counter, tmp ); - use_len = (output_len > CTR_DRBG_BLOCKSIZE ) ? CTR_DRBG_BLOCKSIZE : output_len; + use_len = (output_len > CTR_DRBG_BLOCKSIZE ) ? CTR_DRBG_BLOCKSIZE : + output_len; /* * Copy random block to destination */