This commit is contained in:
Hurrison 2026-02-07 09:31:08 +05:30 committed by GitHub
commit 68e1838dfe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -86,13 +86,13 @@ int main(int argc, char **argv) {
}
if(sf_write_float(outf, mpx_buffer, LENGTH) != LENGTH) {
fprintf(stderr, "Error: writing to file %s.\n", argv[1]);
fprintf(stderr, "Error: writing to file %s.\n", argv[2]);
return EXIT_FAILURE;
}
}
if(sf_close(outf) ) {
fprintf(stderr, "Error: closing file %s.\n", argv[1]);
fprintf(stderr, "Error: closing file %s.\n", argv[2]);
}
fm_mpx_close();