mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
smtk-import: Add curly braces in nested conditionals
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 <salvador.cunat@gmail.com>
This commit is contained in:
parent
75007aa4ef
commit
441cfb3f05
1 changed files with 3 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue