From: Richard Hartmann Subject: [PATCH 15/19] crypto: testmgr - Fix checkpatch errors Date: Fri, 19 Feb 2010 01:23:07 +0100 Message-ID: <1266538988-3575-1-git-send-email-richih.mailinglist@gmail.com> Cc: Richard Hartmann , Herbert Xu , "David S. Miller" , Jarod Wilson , Geert Uytterhoeven , Neil Horman , linux-kernel@vger.kernel.org To: linux-crypto@vger.kernel.org Return-path: Received: from mail-vw0-f46.google.com ([209.85.212.46]:63509 "EHLO mail-vw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753774Ab0BSAX2 (ORCPT ); Thu, 18 Feb 2010 19:23:28 -0500 Sender: linux-crypto-owner@vger.kernel.org List-ID: Signed-off-by: Richard Hartmann --- crypto/testmgr.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crypto/testmgr.c b/crypto/testmgr.c index 7620bfc..520127a 100644 --- a/crypto/testmgr.c +++ b/crypto/testmgr.c @@ -657,7 +657,7 @@ static int test_cipher(struct crypto_cipher *tfm, int enc, goto out_nobuf; if (enc == ENCRYPT) - e = "encryption"; + e = "encryption"; else e = "decryption"; @@ -737,7 +737,7 @@ static int test_skcipher(struct crypto_ablkcipher *tfm, int enc, goto out_nobuf; if (enc == ENCRYPT) - e = "encryption"; + e = "encryption"; else e = "decryption"; @@ -952,7 +952,7 @@ static int test_comp(struct crypto_comp *tfm, struct comp_testvec *ctemplate, int ilen; unsigned int dlen = COMP_BUF_SIZE; - memset(result, 0, sizeof (result)); + memset(result, 0, sizeof(result)); ilen = ctemplate[i].inlen; ret = crypto_comp_compress(tfm, ctemplate[i].input, @@ -985,7 +985,7 @@ static int test_comp(struct crypto_comp *tfm, struct comp_testvec *ctemplate, int ilen; unsigned int dlen = COMP_BUF_SIZE; - memset(result, 0, sizeof (result)); + memset(result, 0, sizeof(result)); ilen = dtemplate[i].inlen; ret = crypto_comp_decompress(tfm, dtemplate[i].input, -- 1.6.6.1