diff options
author | Joshua I. James <joshua@cybercrimetech.com> | 2014-12-05 08:38:40 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2014-12-22 15:02:36 +0300 |
commit | 267c4221ff574ac70ec0b02b923b16f39b54da1a (patch) | |
tree | 3a30769f8f8b1b1e08c1bcab6eac19c9ca637773 /crypto/af_alg.c | |
parent | 4fad478ae0ff7bd27c853a085555317c0dc68704 (diff) | |
download | linux-267c4221ff574ac70ec0b02b923b16f39b54da1a.tar.xz |
crypto: af_alg - fixed style error in af_alg.c
Fixed style error identified by checkpatch.
ERROR: space required before the open parenthesis '('
+ switch(cmsg->cmsg_type) {
Signed-off-by: Joshua I. James <joshua@cybercrimetech.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/af_alg.c')
-rw-r--r-- | crypto/af_alg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/af_alg.c b/crypto/af_alg.c index 4665b79c729a..8ffc174a0154 100644 --- a/crypto/af_alg.c +++ b/crypto/af_alg.c @@ -405,7 +405,7 @@ int af_alg_cmsg_send(struct msghdr *msg, struct af_alg_control *con) if (cmsg->cmsg_level != SOL_ALG) continue; - switch(cmsg->cmsg_type) { + switch (cmsg->cmsg_type) { case ALG_SET_IV: if (cmsg->cmsg_len < CMSG_LEN(sizeof(*con->iv))) return -EINVAL; |