From c70046bccff056c60c7e28861a9c8f1af581655d Mon Sep 17 00:00:00 2001 From: Janice McLaughlin Date: Thu, 27 Jun 2019 00:23:14 +0200 Subject: [PATCH] Fix the tank pressure reporting A small typo introduced with the Tusa Talis support in commit b188c414206daaa5b6de464ced98d78f6da7cde1 accidentally disabled the tank pressure reporting for all models. --- src/oceanic_atom2_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oceanic_atom2_parser.c b/src/oceanic_atom2_parser.c index ddedc40..6113b6f 100644 --- a/src/oceanic_atom2_parser.c +++ b/src/oceanic_atom2_parser.c @@ -714,7 +714,7 @@ oceanic_atom2_parser_samples_foreach (dc_parser_t *abstract, dc_sample_callback_ parser->model == GEO || parser->model == GEO20 || parser->model == MANTA || parser->model == I300 || parser->model == I200 || parser->model == I100 || - parser->model == I300C || TALIS) { + parser->model == I300C || parser->model == TALIS) { have_pressure = 0; }