summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/ao_viterbi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/ao_viterbi.c b/src/core/ao_viterbi.c
index 1b1784b3..17464cd1 100644
--- a/src/core/ao_viterbi.c
+++ b/src/core/ao_viterbi.c
@@ -120,9 +120,9 @@ ao_fec_decode(uint8_t *in, uint16_t len, uint8_t *out)
p = n;
/* A loop is needed to handle the last output byte. It
- * won't have a full NUM_HIST bits of future data to
- * perform full error correction, but we might as well
- * give the best possible answer anyways.
+ * won't have any bits of future data to perform full
+ * error correction, but we might as well give the
+ * best possible answer anyways.
*/
while ((b - o) >= (8 + NUM_HIST) || (i + 2 >= len && b > o)) {