summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorJoshua I. James <joshua@cybercrimetech.com>2014-12-05 14:38:40 +0900
committerHerbert Xu <herbert@gondor.apana.org.au>2014-12-22 23:02:36 +1100
commit3cd5b0be5ef0c2ad595549465c7db7ce638b2a12 (patch)
tree2ef530cca9fe5acf0d0212fdbc063d5fc407023a /crypto
parente5d7afd024da27d19b1d966a87bc7ded4fc5f127 (diff)
downloadlinux-crypto-3cd5b0be5ef0c2ad595549465c7db7ce638b2a12.tar.gz
linux-crypto-3cd5b0be5ef0c2ad595549465c7db7ce638b2a12.zip
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')
-rw-r--r--crypto/af_alg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/af_alg.c b/crypto/af_alg.c
index 4665b79c..8ffc174a 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;