diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2014-10-28 13:35:16 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-10-28 07:40:27 -0700 |
commit | 85df7ebb0288fa988c83e3783ae7eb0d10567960 (patch) | |
tree | eea8325bce5d507b64b1e6e2b3b043a4c843cd87 /cochran.c | |
parent | 469f42f8d58a8427e51a75e1ed5d1e2639122d8e (diff) | |
download | subsurface-85df7ebb0288fa988c83e3783ae7eb0d10567960.tar.gz |
cochran.c: make cochran_predive_event_bytes() return 0
It seems that an iteration will happen even if the function
returns 0, but this looks like a non-breaking change.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'cochran.c')
-rw-r--r-- | cochran.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -285,6 +285,8 @@ static int cochran_predive_event_bytes(unsigned char code) return emc_event_bytes[x][1]; break; } + + return 0; } int cochran_dive_event_bytes(unsigned char event) |