Browse Source

Fix a logical check in numbers.c

master
Reece H. Dunn 9 years ago
parent
commit
08b6ad3a00
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/libespeak-ng/numbers.c

+ 1
- 1
src/libespeak-ng/numbers.c View File

sprintf(string,"_%dM%do",value,thousandplex); sprintf(string,"_%dM%do",value,thousandplex);
found_value = Lookup(tr, string, ph_thousands); found_value = Lookup(tr, string, ph_thousands);
} }
if(!found_value & (number_control & 1))
if(!found_value && (number_control & 1))
{ {
// look for the 'e' variant // look for the 'e' variant
sprintf(string,"_%dM%de",value,thousandplex); sprintf(string,"_%dM%de",value,thousandplex);

Loading…
Cancel
Save