From: Masahiro Yamada Date: Wed, 29 Jul 2020 03:18:45 +0000 (+0900) Subject: extract-cert: add static to local data X-Git-Tag: v5.10.7~1782^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1dbcf46d516b3ab9b114ffcb7b8a55ee5e375523;p=platform%2Fkernel%2Flinux-rpi.git extract-cert: add static to local data Fix the following warning from sparse: scripts/extract-cert.c:74:5: warning: symbol 'kbuild_verbose' was not declared. Should it be static? Signed-off-by: Masahiro Yamada --- diff --git a/scripts/extract-cert.c b/scripts/extract-cert.c index b071bf4..3bc48c7 100644 --- a/scripts/extract-cert.c +++ b/scripts/extract-cert.c @@ -71,7 +71,7 @@ static void drain_openssl_errors(void) static const char *key_pass; static BIO *wb; static char *cert_dst; -int kbuild_verbose; +static int kbuild_verbose; static void write_cert(X509 *x509) {