From ca2008903f66f856de4cd86e83a387b56260d5b7 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Wed, 24 Nov 2021 05:52:36 +0100 Subject: [PATCH] sndfile-convert: fix typo in error message (#793) Co-authored-by: evpobr --- CHANGELOG.md | 1 + programs/sndfile-convert.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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) ; } ;