Use implicit zero initialize for the whole array.

Clang yelled about it, and it looks prettier. It also felt kinda strange
to explicit initialize the first element to zero and the rest to zero
implicit.

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2013-12-09 22:37:49 +01:00 committed by Dirk Hohndel
parent 85fd75ad51
commit a3f3e85246

View file

@ -442,7 +442,7 @@ void MainTab::updateDiveInfo(int dive)
ui.otuText->setText(QString("%1").arg(d->otu));
ui.waterTemperatureText->setText(get_temperature_string(d->watertemp, TRUE));
ui.airTemperatureText->setText(get_temperature_string(d->airtemp, TRUE));
volume_t gases[MAX_CYLINDERS] = { 0 };
volume_t gases[MAX_CYLINDERS] = {};
get_gas_used(d, gases);
QString volumes = get_volume_string(gases[0], TRUE);
int mean[MAX_CYLINDERS], duration[MAX_CYLINDERS];