1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

ISO C requires at least one element in an initialiser list.

This commit is contained in:
Stefan Farfeleder 2005-01-10 20:30:04 +00:00
parent 06256619a5
commit 1e183df21e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=139996

View File

@ -692,7 +692,7 @@ bucket_cache_drain(uma_zone_t zone)
static void
zone_drain(uma_zone_t zone)
{
struct slabhead freeslabs = {};
struct slabhead freeslabs = { 0 };
uma_keg_t keg;
uma_slab_t slab;
uma_slab_t n;