Browse Source

Fix gcc sign conversion warnings in klatt.c.

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

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

temp = (int)(out * wdata.amplitude * kt_globals.amp_gain0); // Convert back to integer temp = (int)(out * wdata.amplitude * kt_globals.amp_gain0); // Convert back to integer


// mix with a recorded WAV if required for this phoneme // mix with a recorded WAV if required for this phoneme
signed char c;
unsigned char c;
int sample; int sample;


if (wdata.mix_wavefile_ix < wdata.n_mix_wavefile) { if (wdata.mix_wavefile_ix < wdata.n_mix_wavefile) {

Loading…
Cancel
Save