Remove redundant comparison.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5724 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Steven Franke 2015-07-27 00:46:32 +00:00
parent 4be15b71f4
commit 1c41850d3d
1 changed files with 1 additions and 5 deletions

View File

@ -79,11 +79,7 @@ int jelinek(
// only 50 bits are not 0's.
if( depth < 56 ) {
encstate=encstate<<1;
}
// get channel symbols associated with the 0 branch
if( depth < 56 ) {
ENCODE(lsym,encstate);
ENCODE(lsym,encstate); // get channel symbols associated with the 0 branch
} else {
ENCODE(lsym,encstate<<(depth-55));
}