From: RageLtMan Date: Fri, 13 Jan 2017 22:12:42 +0000 (-0500) Subject: Update struct member intializers to C89 X-Git-Tag: zfs-0.8.0-rc1~152^2~62 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=120faefed90aa4c276a3db45525dc5c804cb1a00;p=zfs Update struct member intializers to C89 When building SPL within the kernel tree, C99 initializers cause build failures and need to be converted to C89 as kernel CFLAGS specify -std=gnu89. This fix was provided by @behlendorf in #595 discussion notes and manually implemented in the current master revision. Reviewed-by: Brian Behlendorf Signed-off-by: RageLtMan Closes #597 --- diff --git a/module/spl/spl-proc.c b/module/spl/spl-proc.c index 345d0d5c7..d6159b4b6 100644 --- a/module/spl/spl-proc.c +++ b/module/spl/spl-proc.c @@ -628,11 +628,11 @@ static struct ctl_table spl_kmem_table[] = { .mode = 0444, .proc_handler = &proc_doslab, }, - {0}, + {}, }; static struct ctl_table spl_kstat_table[] = { - {0}, + {}, }; static struct ctl_table spl_table[] = { @@ -663,7 +663,7 @@ static struct ctl_table spl_table[] = { .mode = 0555, .child = spl_kstat_table, }, - { 0 }, + {}, }; static struct ctl_table spl_dir[] = { @@ -672,7 +672,7 @@ static struct ctl_table spl_dir[] = { .mode = 0555, .child = spl_table, }, - { 0 } + {} }; static struct ctl_table spl_root[] = { @@ -684,7 +684,7 @@ static struct ctl_table spl_root[] = { .mode = 0555, .child = spl_dir, }, - { 0 } + {} }; int