# HG changeset patch # User Robert Jenssen # Date 1464435217 -7200 # Node ID 43f613cca3abb8246ebeb563ead0c9aaeb1b6a51 # Parent 7e981549dd9b4fddf66e18100f30dfb95b0127d3 libinterp/corefcn/__ilu__.cc: avoid compiler warning (bug #48043) [-Wmaybe-uninitialized] diff -r 7e981549dd9b -r 43f613cca3ab libinterp/corefcn/__ilu__.cc --- a/libinterp/corefcn/__ilu__.cc Fri May 27 21:01:17 2016 -0400 +++ b/libinterp/corefcn/__ilu__.cc Sat May 28 13:33:37 2016 +0200 @@ -42,7 +42,8 @@ { const octave_idx_type n = sm.cols (); octave_idx_type j1, j2, jrow, jw, i, j, k, jj; - T tl, r; + T r; + T tl = 0; enum {OFF, ROW, COL}; char opt;