From a0a9a4b452b9f61c0dc641cd3602ccffa1b06615 Mon Sep 17 00:00:00 2001 From: short <> Date: Sun, 26 Jun 2005 02:20:35 +0000 Subject: [PATCH] Workaround GCC stupidity warn. --- src/configuration.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configuration.c b/src/configuration.c index d112ed9..9543064 100644 --- a/src/configuration.c +++ b/src/configuration.c @@ -165,7 +165,7 @@ open_retry: while (errno=0,fgets(line,sizeof(line),f)) { char *s; char *varname_start,*varname_stop,varname_stop_orig; -char *varcontent_start,*varcontent_stop,varcontent_stop_orig; +char *varcontent_start,*varcontent_stop,varcontent_stop_orig=0 /* shut up GCC */; const gchar *value; lineno++; -- 1.8.3.1