From: Peter Johnson Date: Sun, 5 Feb 2006 18:53:11 +0000 (-0000) Subject: * bitvect.c (BitVector_from_Enum): Silence compiler warning. X-Git-Tag: v0.5.0rc1~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f03dd33523392b62a1aa6996657c7a51695012b;p=yasm * bitvect.c (BitVector_from_Enum): Silence compiler warning. svn path=/trunk/yasm/; revision=1364 --- diff --git a/libyasm/bitvect.c b/libyasm/bitvect.c index fe4a22d8..dd0d1b46 100644 --- a/libyasm/bitvect.c +++ b/libyasm/bitvect.c @@ -2093,7 +2093,7 @@ ErrCode BitVector_from_Enum(wordptr addr, charptr string) N_word bits = bits_(addr); N_word state = 1; N_word token; - N_word indx; + N_word indx = 0; /* silence compiler warning */ N_word start = 0; /* silence compiler warning */ if (bits > 0)