From 7432589757369ce35b70ee50db3ec185941360ff Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Mon, 17 Jan 2022 10:04:27 +1100 Subject: [PATCH] krb5: zeros is static, does not need explicit initializer --- lib/krb5/pac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/krb5/pac.c b/lib/krb5/pac.c index fded19204..592d7edab 100644 --- a/lib/krb5/pac.c +++ b/lib/krb5/pac.c @@ -98,7 +98,7 @@ struct krb5_pac_data { } \ } while(0) -static const char zeros[PAC_ALIGNMENT] = { 0 }; +static const char zeros[PAC_ALIGNMENT]; static void pac_dealloc(void *ctx)