diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-03-18 14:11:07 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-03-18 15:59:27 -0700 |
commit | 41375a205c6b25f3ec536206bcb9cd4a2db0de2a (patch) | |
tree | 017a1a4e92c74afa14896c81726d4f7f8ab6c45f | |
parent | 9177e0a44b61d285493ffeaef97cc729d0fdf532 (diff) | |
download | subsurface-41375a205c6b25f3ec536206bcb9cd4a2db0de2a.tar.gz |
Cleanup: remove unused global variables from datatrak.c
lector_bytes and lector_word were used nowhere.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
-rw-r--r-- | core/datatrak.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/datatrak.c b/core/datatrak.c index 74486af0d..89c555a97 100644 --- a/core/datatrak.c +++ b/core/datatrak.c @@ -16,7 +16,7 @@ #include "file.h" #include "ssrf.h" -unsigned char lector_bytes[2], lector_word[4], tmp_1byte, *byte; +unsigned char tmp_1byte, *byte; unsigned int tmp_2bytes; char is_nitrox, is_O2, is_SCR; unsigned long tmp_4bytes; |