diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-03-18 14:11:07 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-04 15:10:48 -0700 |
commit | 5c625d811690e9981d00c85aca6bcc6e82e79d27 (patch) | |
tree | 73e076d15c79afae7e4613528e1ea51879b166c4 | |
parent | 450bad9d7b4b2c584077dc2f2526a8cab0cbeb1c (diff) | |
download | subsurface-5c625d811690e9981d00c85aca6bcc6e82e79d27.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 81dbadfd5..60c47fcb7 100644 --- a/core/datatrak.c +++ b/core/datatrak.c @@ -15,7 +15,7 @@ #include "device.h" #include "file.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; |