aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorGeert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>2009-03-29 03:44:19 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2009-06-02 00:04:18 -0400
commitc79cf91006f03adb603879013b6710b6062c8445 (patch)
treef85918e364d6f28cc131f59a79e4ffdc899f8fe3 /crypto
parent2cf4ac8beb9dc50a315a6155b7b70e754d511958 (diff)
crypto: testmgr - Kill test_comp() sparse warnings
make C=1: | crypto/testmgr.c:846:45: warning: incorrect type in argument 5 (different signedness) | crypto/testmgr.c:846:45: expected unsigned int *dlen | crypto/testmgr.c:846:45: got int *<noident> | crypto/testmgr.c:878:47: warning: incorrect type in argument 5 (different signedness) | crypto/testmgr.c:878:47: expected unsigned int *dlen | crypto/testmgr.c:878:47: got int *<noident> Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/testmgr.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index b50c3c6b17a2..bfee6e9f642d 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -837,7 +837,8 @@ static int test_comp(struct crypto_comp *tfm, struct comp_testvec *ctemplate,
837 int ret; 837 int ret;
838 838
839 for (i = 0; i < ctcount; i++) { 839 for (i = 0; i < ctcount; i++) {
840 int ilen, dlen = COMP_BUF_SIZE; 840 int ilen;
841 unsigned int dlen = COMP_BUF_SIZE;
841 842
842 memset(result, 0, sizeof (result)); 843 memset(result, 0, sizeof (result));
843 844
@@ -869,7 +870,8 @@ static int test_comp(struct crypto_comp *tfm, struct comp_testvec *ctemplate,
869 } 870 }
870 871
871 for (i = 0; i < dtcount; i++) { 872 for (i = 0; i < dtcount; i++) {
872 int ilen, dlen = COMP_BUF_SIZE; 873 int ilen;
874 unsigned int dlen = COMP_BUF_SIZE;
873 875
874 memset(result, 0, sizeof (result)); 876 memset(result, 0, sizeof (result));
875 877