mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
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 <masahiroy@kernel.org>
This commit is contained in:
parent
a97ea93ed5
commit
1dbcf46d51
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue