summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2003-07-09 19:10:47 +0000
committerH. Peter Anvin <hpa@zytor.com>2003-07-09 19:10:47 +0000
commitda4c3983b21ab483c8b5899259462b90da4a3c1d (patch)
tree6890ee4064fb1c549c638319c2173e2f927e721e
parentfbf539dbd95ec4e648feb27889be8cb016c7cc8e (diff)
downloadnasm-da4c3983b21ab483c8b5899259462b90da4a3c1d.tar.gz
Quiet spurious gcc warning
-rw-r--r--output/outbin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/output/outbin.c b/output/outbin.c
index 25463e0d..80be83cf 100644
--- a/output/outbin.c
+++ b/output/outbin.c
@@ -199,7 +199,7 @@ static struct Section * create_section(char *name)
static void bin_cleanup (int debuginfo)
{ struct Section *g, **gp;
- struct Section *gs, **gsp;
+ struct Section *gs = NULL, **gsp;
struct Section *s, **sp;
struct Section *nobits = NULL, **nt;
struct Section * last_progbits;