FIReader: Silence uninitialized variable warning
authorTuro Lamminen <turotl@gmail.com>
Mon, 18 Sep 2017 11:59:55 +0000 (14:59 +0300)
committerTuro Lamminen <turotl@gmail.com>
Mon, 18 Sep 2017 11:59:55 +0000 (14:59 +0300)
commit4652be8f18842cf3dc2cbcac1b3e8bd21115a2e4
tree272380790637bc00c46cf87db01ea5a73e4266c4
parent41724ace2d0fdba04330b95d4018b499a09ea73c
FIReader: Silence uninitialized variable warning

This is a false positive. First time through the loop 'imod3' is always 0
so c1 is not used. It's also set so further iterations have a valid 'c1'.
If 'value' is empty the switch doesn't look at 'c1' either since 'imod3'
is still 0.
code/FIReader.cpp