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:
parent
06256619a5
commit
1e183df21e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=139996
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user