mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-12 14:56:16 +00:00
OSTC tools: prevent unknown dc family
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
66375689b8
commit
99bcdb3f30
1 changed files with 13 additions and 10 deletions
|
@ -119,6 +119,9 @@ void ostctools_import(const char *file, struct dive_table *divetable)
|
||||||
case 0x23:
|
case 0x23:
|
||||||
dc_fam = DC_FAMILY_HW_OSTC3;
|
dc_fam = DC_FAMILY_HW_OSTC3;
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
fprintf(stderr, "got unknown dc family %x\n", buffer[2]);
|
||||||
|
dc_fam = DC_FAMILY_NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prepare data to pass to libdivecomputer. OSTC protocol doesn't include
|
// Prepare data to pass to libdivecomputer. OSTC protocol doesn't include
|
||||||
|
|
Loading…
Add table
Reference in a new issue