diff options
author | obrien <obrien@FreeBSD.org> | 2002-04-10 03:00:50 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-04-10 03:00:50 +0000 |
commit | 8c178db49d1d41bb6d76dec0644fa759dcf7fe11 (patch) | |
tree | 9f2eda0c1fd8344a2cff5abe5848eacbf499c973 /usr.bin/yacc/reader.c | |
parent | 824b21ae0065c007a53f3272636e17ab77d17184 (diff) | |
download | FreeBSD-src-8c178db49d1d41bb6d76dec0644fa759dcf7fe11.zip FreeBSD-src-8c178db49d1d41bb6d76dec0644fa759dcf7fe11.tar.gz |
Quiet uninitialized warnings.
Diffstat (limited to 'usr.bin/yacc/reader.c')
-rw-r--r-- | usr.bin/yacc/reader.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/yacc/reader.c b/usr.bin/yacc/reader.c index 8358f78..5beb199 100644 --- a/usr.bin/yacc/reader.c +++ b/usr.bin/yacc/reader.c @@ -1888,6 +1888,7 @@ print_grammar() if (!vflag) return; k = 1; + spacing = 0; for (i = 2; i < nrules; ++i) { if (rlhs[i] != rlhs[i-1]) |