diff options
-rw-r--r-- | parse-xml.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/parse-xml.c b/parse-xml.c index fcd61eb70..927a06431 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -2073,7 +2073,7 @@ extern int dm5_cylinders(void *handle, int columns, char **data, char **column) cur_dive->cylinder[cur_cylinder_index].start.mbar = atoi(data[7]); if (data[8] && atoi(data[8]) > 0 && atoi(data[8]) < 350000) cur_dive->cylinder[cur_cylinder_index].end.mbar = (atoi(data[8])); - if (data[6]) + if (data[6]) { /* DM5 shows tank size of 12 liters when the actual * value is 0 (and using metric units). So we just use * the same 12 liters when size is not available */ @@ -2081,6 +2081,7 @@ extern int dm5_cylinders(void *handle, int columns, char **data, char **column) cur_dive->cylinder[cur_cylinder_index].type.size.mliter = 12000; else cur_dive->cylinder[cur_cylinder_index].type.size.mliter = (atof(data[6])) * 1000; + } if (data[2]) cur_dive->cylinder[cur_cylinder_index].gasmix.o2.permille = atoi(data[2]) * 10; if (data[3]) |