Browse Source

Use ENV_LEN in the fwrite call in LoadEnvelope2 to be consistent with the rest of the function.

master
Reece H. Dunn 7 years ago
parent
commit
583a23f0cd
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/libespeak-ng/compiledata.c

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

} }


displ = ftell(f_phdata); displ = ftell(f_phdata);
fwrite(env, 1, 128, f_phdata);
fwrite(env, 1, ENV_LEN, f_phdata);


return displ; return displ;
} }

Loading…
Cancel
Save