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

@@ -1434,7 +1434,7 @@ static int LoadEnvelope2(FILE *f, const char *fname)
}

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

return displ;
}

Loading…
Cancel
Save