diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2018-04-03 21:59:38 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2018-04-03 21:59:38 +0000 |
commit | 6701a66c9e8041d93ceea2c23ca9805be964c9f3 (patch) | |
tree | ef871934f37338ac05ebc78d8acf11018d103090 /lib/libcrypto/aes/aes_x86core.c | |
parent | ade4870613ec7134009eb0f218687195f66ec377 (diff) |
KNF: move two opening curly braces of function bodies to their own lines
Diffstat (limited to 'lib/libcrypto/aes/aes_x86core.c')
-rw-r--r-- | lib/libcrypto/aes/aes_x86core.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libcrypto/aes/aes_x86core.c b/lib/libcrypto/aes/aes_x86core.c index c604fa876f4..d0d12dc3ae7 100644 --- a/lib/libcrypto/aes/aes_x86core.c +++ b/lib/libcrypto/aes/aes_x86core.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aes_x86core.c,v 1.8 2015/02/10 09:46:30 miod Exp $ */ +/* $OpenBSD: aes_x86core.c,v 1.9 2018/04/03 21:59:37 tb Exp $ */ /** * rijndael-alg-fst.c * @@ -465,7 +465,8 @@ static const u32 rcon[] = { * Expand the cipher key into the encryption key schedule. */ int -AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) { +AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) +{ u32 *rk; int i = 0; u32 temp; |