Browse Source

cleanup: fix code smell knownConditionTrueFalse

Inner 'n_bytes >= 0' will always be true.
master
Juho Hiltunen 2 years ago
parent
commit
07da7edeea
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      src/libespeak-ng/dictionary.c

+ 4
- 4
src/libespeak-ng/dictionary.c View File

@@ -1650,8 +1650,8 @@ static void MatchRule(Translator *tr, char *word[], char *word_start, int group_
letter_group = LetterGroupNo(rule++);
if ((n_bytes = IsLetterGroup(tr, post_ptr-1, letter_group, 0)) >= 0) {
add_points = (20-distance_right);
if (n_bytes >= 0) // move pointer, if group was found
post_ptr += (n_bytes-1);
// move pointer, if group was found
post_ptr += (n_bytes-1);
} else
failed = 1;
break;
@@ -1869,8 +1869,8 @@ static void MatchRule(Translator *tr, char *word[], char *word_start, int group_
letter_group = LetterGroupNo(rule++);
if ((n_bytes = IsLetterGroup(tr, pre_ptr, letter_group, 1)) >= 0) {
add_points = (20-distance_right);
if (n_bytes >= 0) // move pointer, if group was found
pre_ptr -= (n_bytes-1);
// move pointer, if group was found
pre_ptr -= (n_bytes-1);
} else
failed = 1;
break;

Loading…
Cancel
Save