mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
module_signing: fix printk format warning
Fix the warning: kernel/module_signing.c:195:2: warning: format '%lu' expects type 'long unsigned int', but argument 3 has type 'size_t' by using the proper 'z' modifier for printing a size_t. Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Cc: David Howells <dhowells@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
4fe7e866a7
commit
0390c88356
@ -192,7 +192,7 @@ int mod_verify_sig(const void *mod, unsigned long *_modlen)
|
||||
size_t modlen = *_modlen, sig_len;
|
||||
int ret;
|
||||
|
||||
pr_devel("==>%s(,%lu)\n", __func__, modlen);
|
||||
pr_devel("==>%s(,%zu)\n", __func__, modlen);
|
||||
|
||||
if (modlen <= sizeof(ms))
|
||||
return -EBADMSG;
|
||||
|
Loading…
Reference in New Issue
Block a user