git: afdd32f39ff1 - stable/13 - stats: Fix the build under gcc

From: Andrew Turner <andrew_at_FreeBSD.org>
Date: Mon, 15 Jul 2024 12:38:33 UTC
The branch stable/13 has been updated by andrew:

URL: https://cgit.FreeBSD.org/src/commit/?id=afdd32f39ff1d7c63b1c368dcf3feba2533b5818

commit afdd32f39ff1d7c63b1c368dcf3feba2533b5818
Author:     Andrew Turner <andrew@FreeBSD.org>
AuthorDate: 2024-06-04 12:46:33 +0000
Commit:     Andrew Turner <andrew@FreeBSD.org>
CommitDate: 2024-07-15 12:35:21 +0000

    stats: Fix the build under gcc
    
    Reviewed by:    brooks, imp
    Sponsored by:   Arm Ltd
    Differential Revision:  https://reviews.freebsd.org/D45302
    
    (cherry picked from commit a5affc0c4cabb59cceca98c4099fc9acc6a05dda)
---
 sys/kern/subr_stats.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/kern/subr_stats.c b/sys/kern/subr_stats.c
index 0e7d2fad5f68..fef16f34b424 100644
--- a/sys/kern/subr_stats.c
+++ b/sys/kern/subr_stats.c
@@ -296,7 +296,7 @@ static const bool vsd_compoundtype[VSD_NUM_DTYPES] = {
 
 const struct voistatdata_numeric numeric_limits[2][VSD_DTYPE_Q_U64 + 1] = {
 	[LIM_MIN] = {
-		[VSD_DTYPE_VOISTATE] = {0},
+		[VSD_DTYPE_VOISTATE] = {},
 		[VSD_DTYPE_INT_S32] = {.int32 = {.s32 = INT32_MIN}},
 		[VSD_DTYPE_INT_U32] = {.int32 = {.u32 = 0}},
 		[VSD_DTYPE_INT_S64] = {.int64 = {.s64 = INT64_MIN}},
@@ -309,7 +309,7 @@ const struct voistatdata_numeric numeric_limits[2][VSD_DTYPE_Q_U64 + 1] = {
 		[VSD_DTYPE_Q_U64] = {.q64 = {.uq64 = 0}},
 	},
 	[LIM_MAX] = {
-		[VSD_DTYPE_VOISTATE] = {0},
+		[VSD_DTYPE_VOISTATE] = {},
 		[VSD_DTYPE_INT_S32] = {.int32 = {.s32 = INT32_MAX}},
 		[VSD_DTYPE_INT_U32] = {.int32 = {.u32 = UINT32_MAX}},
 		[VSD_DTYPE_INT_S64] = {.int64 = {.s64 = INT64_MAX}},