Deal with some uninitialized variable warnings

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2014-06-11 09:37:12 -07:00
parent b42df1dab6
commit b70c877b3c
2 changed files with 4 additions and 4 deletions

View file

@ -159,7 +159,7 @@ void DiveCartesianAxis::updateTicks(color_indice_t color)
} else if (orientation == LeftToRight) {
begin = m.x1();
stepSize = (m.x2() - m.x1());
} else if (orientation == RightToLeft) {
} else /* if (orientation == RightToLeft) */ {
begin = m.x2();
stepSize = (m.x2() - m.x1());
}