Commit 77af1ab9 authored by Cedric Roux's avatar Cedric Roux

nr rlc: fix decode_poll_byte()

The returned value was 1024 times too big.
parent 0ed8fb72
......@@ -135,7 +135,7 @@ int decode_poll_byte(int v)
}
if (tab[v] == -1) return -1;
return tab[v] * 1024;
return tab[v];
}
int decode_max_retx_threshold(int v)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment