aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-12-06 09:40:21 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-12-06 09:42:29 -0800
commitf57796762999d9c4fb4f2e5f55310c5ee0e6c2c2 (patch)
treece0b7f0b90d93be8f8cbf35ac4f16bb293a4a4c4
parentd6b7ea5f7faf94cc67db53d3166fb717a2c5017a (diff)
downloadsubsurface-f57796762999d9c4fb4f2e5f55310c5ee0e6c2c2.tar.gz
Only warn about different number of tanks and gases if there are tanks
Some backends support giving tank data for some, but not all models that they support (and simply report no tanks for those models that don't support this). The Suunto Vyper is one of the dive computers where this happens and without this change we report angry red warnings after a perfectly correct download. So this changes the logic to only show that error if there actually were tanks reported. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--libdivecomputer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdivecomputer.c b/libdivecomputer.c
index 8ed29edd7..39908847b 100644
--- a/libdivecomputer.c
+++ b/libdivecomputer.c
@@ -77,7 +77,7 @@ static int parse_gasmixes(device_data_t *devdata, struct dive *dive, dc_parser_t
int ntanks = 0;
rc = dc_parser_get_field(parser, DC_FIELD_TANK_COUNT, 0, &ntanks);
if (rc == DC_STATUS_SUCCESS) {
- if (ntanks != ngases) {
+ if (ntanks && ntanks != ngases) {
shown_warning = true;
report_error("different number of gases (%d) and tanks (%d)", ngases, ntanks);
}