Browse Source

wavegen.c: Fix -Wunused-but-set-variable warning.

master
Juho Hiltunen 7 years ago
parent
commit
6d751c93bf
1 changed files with 4 additions and 3 deletions
  1. 4
    3
      src/libespeak-ng/wavegen.c

+ 4
- 3
src/libespeak-ng/wavegen.c View File

int WavegenFill(void) int WavegenFill(void)
{ {
int finished; int finished;
unsigned char *p_start;

p_start = out_ptr;


finished = WavegenFill2(); finished = WavegenFill2();


#if HAVE_SONIC_H #if HAVE_SONIC_H
unsigned char *p_start;

p_start = out_ptr;

if (sonicSpeed > 1.0) { if (sonicSpeed > 1.0) {
int length; int length;
int max_length; int max_length;

Loading…
Cancel
Save