From 441cfb3f056d3a57ca27b67f223129f348fb78fe Mon Sep 17 00:00:00 2001 From: Salvador Cuñat Date: Wed, 12 Apr 2017 21:59:56 +0200 Subject: smtk-import: Add curly braces in nested conditionals MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Curly braces are necessary in nested conditionals or results may not be those expected. In this case, the "else" clause applied on second "if", instead of first one. Signed-off-by: Salvador Cuñat --- smtk-import/smartrak.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'smtk-import') diff --git a/smtk-import/smartrak.c b/smtk-import/smartrak.c index a50186b3d..b1ac3ef58 100644 --- a/smtk-import/smartrak.c +++ b/smtk-import/smartrak.c @@ -904,11 +904,12 @@ void smartrak_import(const char *file, struct dive_table *divetable) smtkdive->cylinder[i].end.mbar = lrint(strtod(col[(i * 2) + 1 + pstartcol]->bind_ptr, NULL) * 1000 ? : 1000); if (smtkdive->cylinder[i].gasmix.o2.permille == 0) smtkdive->cylinder[i].gasmix.o2.permille = lrint(strtod(col[i + o2fraccol]->bind_ptr, NULL) * 10); - if (smtk_version == 10213) + if (smtk_version == 10213) { if (smtkdive->cylinder[i].gasmix.he.permille == 0) smtkdive->cylinder[i].gasmix.he.permille = lrint(strtod(col[i + hefraccol]->bind_ptr, NULL) * 10); - else + } else { smtkdive->cylinder[i].gasmix.he.permille = 0; + } smtk_build_tank_info(mdb_clon, &smtkdive->cylinder[i], col[i + tankidxcol]->bind_ptr); } /* Check for duplicated cylinders and clean them */ -- cgit v1.2.3-70-g09d2