sndfile-convert: fix typo in error message (#793)

Co-authored-by: evpobr <evpobr@gmail.com>
This commit is contained in:
Felix Lange 2021-11-24 05:52:36 +01:00 committed by GitHub
parent 47383a6cc2
commit ca2008903f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -77,6 +77,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
* Typo in `docs/index.md`. * Typo in `docs/index.md`.
* Typo in `programs/sndfile-convert.c`, thanks @fjl.
* Memory leak in `caf_read_header`(), credit to OSS-Fuzz ([issue 30375](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=30375)). * Memory leak in `caf_read_header`(), credit to OSS-Fuzz ([issue 30375](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=30375)).
* Stack overflow in `guess_file_type`(), thanks @bobsayshilol, credit to * Stack overflow in `guess_file_type`(), thanks @bobsayshilol, credit to
OSS-Fuzz ([issue 29339](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=29339)). OSS-Fuzz ([issue 29339](https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=29339)).

View File

@ -281,7 +281,7 @@ main (int argc, char * argv [])
continue ; continue ;
} ; } ;
printf ("Error : Not able to decode argunment '%s'.\n", argv [k]) ; printf ("Error : Not able to decode argument '%s'.\n", argv [k]) ;
exit (1) ; exit (1) ;
} ; } ;