diff options
author | shiliyang <shiliyang@huawei.com> | 2020-11-03 11:10:32 +0800 |
---|---|---|
committer | Daniel P. Berrangé <berrange@redhat.com> | 2021-01-29 17:07:53 +0000 |
commit | c93c7dc0367a7df78e4eef2239fdc81c09dada3c (patch) | |
tree | b61cdc1574876a3372d0dcaec332c5a16a62f811 /crypto/aes.c | |
parent | 7d7dbf9dc15be6e1465c756c2c5ae7f1ab104fc8 (diff) |
crypto: Add spaces around operator
I am reading crypto related code, find some code style problems while
using checkpatch.pl to check crypto folder. Fix the error style
problems.
Signed-off-by: Liyang Shi <shiliyang@huawei.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'crypto/aes.c')
-rw-r--r-- | crypto/aes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/aes.c b/crypto/aes.c index 56efc95196..af72ff7779 100644 --- a/crypto/aes.c +++ b/crypto/aes.c @@ -1080,9 +1080,9 @@ int AES_set_encrypt_key(const unsigned char *userKey, const int bits, rk = key->rd_key; - if (bits==128) + if (bits == 128) key->rounds = 10; - else if (bits==192) + else if (bits == 192) key->rounds = 12; else key->rounds = 14; |