diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ee33bda..dbe555ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -77,6 +77,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed * 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)). * 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)). diff --git a/programs/sndfile-convert.c b/programs/sndfile-convert.c index c8484f10..b9468624 100644 --- a/programs/sndfile-convert.c +++ b/programs/sndfile-convert.c @@ -281,7 +281,7 @@ main (int argc, char * argv []) 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) ; } ;