From e3d208905d62253a402f7cb32f96f910e64d8c4f Mon Sep 17 00:00:00 2001 From: Thomas Graf Date: Mon, 25 Aug 2014 01:02:57 +0200 Subject: [PATCH] Initialize t to silence uninit warning Signed-off-by: Thomas Graf --- src/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.c b/src/conf.c index 48d07c8..d85e9f6 100644 --- a/src/conf.c +++ b/src/conf.c @@ -371,7 +371,7 @@ static void configfile_read_units(void) static void configfile_read_attrs(void) { - int i, nattrs, t; + int i, nattrs, t = 0; nattrs = cfg_size(cfg, "attr");