static values are automatically initialized to NULL Cc: David Woodhouse <[email protected]> Cc: Andrew Morton <[email protected]> Signed-off-by: Fabian Frederick <[email protected]> --- fs/jffs2/compr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/fs/jffs2/compr.c b/fs/jffs2/compr.c index 4849a4c..a673221 100644 --- a/fs/jffs2/compr.c +++ b/fs/jffs2/compr.c @@ -25,7 +25,8 @@ static LIST_HEAD(jffs2_compressor_list); static int jffs2_compression_mode = JFFS2_COMPR_MODE_PRIORITY; /* Statistics for blocks stored without compression */ -static uint32_t none_stat_compr_blocks=0,none_stat_decompr_blocks=0,none_stat_compr_size=0; +static uint32_t none_stat_compr_blocks, none_stat_decompr_blocks, + none_stat_compr_size; /* -- 1.8.4.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

