friedman: Fix GCC warning about uninitialized fr.w.
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 12 Dec 2010 05:09:17 +0000 (21:09 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 12 Dec 2010 06:10:45 +0000 (22:10 -0800)
commit036ae30df61b1c998e1aa027863ac2349a67066b
tree153aadd22a0d08ba72d320fc23a986ea02024d8d
parent0c5217288cb57d0994d4c99997f5341e2c3a6871
friedman: Fix GCC warning about uninitialized fr.w.

On my machine GCC 4.4 complains:
friedman.c: In function ‘friedman_execute’:
friedman.c:106: warning: ‘fr.w’ may be used uninitialized in this function

This appears to be because GCC can't see that the assignment to fr.w and
its later use (in show_sig_box()) both have the same condition.  At any
rate, this commit suppresses the warning by always initializing fr.w.
src/language/stats/friedman.c