From ef0a7964a759f05b6c64096e4ec8e674d8283d2e Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 21 Nov 2009 11:07:07 +0000 Subject: [PATCH] typo in error message Organization: Straylight/Edgeware From: Richard Kettlewell --- lib/configuration.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/configuration.c b/lib/configuration.c index 443d60b..e2af880 100644 --- a/lib/configuration.c +++ b/lib/configuration.c @@ -365,7 +365,7 @@ static int parse_sample_format(const struct config_state *cs, return -1; } if(t != 8 && t != 16) { - disorder_error(0, "%s:%d: bad bite-per-sample (%ld)", + disorder_error(0, "%s:%d: bad bits-per-sample (%ld)", cs->path, cs->line, t); return -1; } -- [mdw]