diff options
author | Stephan Mueller <smueller@chronox.de> | 2014-07-05 20:24:03 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2014-07-08 09:18:23 -0400 |
commit | a9089571f2fc203c3ba6595a60f0045f048494da (patch) | |
tree | 959fdfdd49ddd523f742172908919d7c0d96c62b /crypto/drbg.c | |
parent | e25e47ec3d569d45485e9a9befe7ad5cdaac47df (diff) |
crypto: drbg - Fix format string for debugging statements
The initial format strings caused warnings on several architectures. The
updated format strings now match the variable types.
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Reported-by: Randy Dunlap <rdunlap@infradead.org>
CC: Joe Perches <joe@perches.com>
Signed-off-by: Stephan Mueller <smueller@chronox.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/drbg.c')
-rw-r--r-- | crypto/drbg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/drbg.c b/crypto/drbg.c index cce915b9d6bc..c9b4c4906d9b 100644 --- a/crypto/drbg.c +++ b/crypto/drbg.c | |||
@@ -1106,7 +1106,7 @@ static int drbg_seed(struct drbg_state *drbg, struct drbg_string *pers, | |||
1106 | 1106 | ||
1107 | /* 9.1 / 9.2 / 9.3.1 step 3 */ | 1107 | /* 9.1 / 9.2 / 9.3.1 step 3 */ |
1108 | if (pers && pers->len > (drbg_max_addtl(drbg))) { | 1108 | if (pers && pers->len > (drbg_max_addtl(drbg))) { |
1109 | pr_devel("DRBG: personalization string too long %lu\n", | 1109 | pr_devel("DRBG: personalization string too long %zu\n", |
1110 | pers->len); | 1110 | pers->len); |
1111 | return -EINVAL; | 1111 | return -EINVAL; |
1112 | } | 1112 | } |
@@ -1984,7 +1984,7 @@ static int __init drbg_init(void) | |||
1984 | 1984 | ||
1985 | if (ARRAY_SIZE(drbg_cores) * 2 > ARRAY_SIZE(drbg_algs)) { | 1985 | if (ARRAY_SIZE(drbg_cores) * 2 > ARRAY_SIZE(drbg_algs)) { |
1986 | pr_info("DRBG: Cannot register all DRBG types" | 1986 | pr_info("DRBG: Cannot register all DRBG types" |
1987 | "(slots needed: %lu, slots available: %lu)\n", | 1987 | "(slots needed: %zu, slots available: %zu)\n", |
1988 | ARRAY_SIZE(drbg_cores) * 2, ARRAY_SIZE(drbg_algs)); | 1988 | ARRAY_SIZE(drbg_cores) * 2, ARRAY_SIZE(drbg_algs)); |
1989 | return ret; | 1989 | return ret; |
1990 | } | 1990 | } |