From cdb465787c6d4f20c6cf0d13df90aaf63f786f15 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Sun, 1 Jun 2014 17:29:32 +1000 Subject: [PATCH] src/ : Fix two typos. * 'norrmal' -> 'normal'. * 'fames' -> 'frames'. Reported-by: lvqcl --- src/flac/encode.c | 2 +- src/share/grabbag/snprintf.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flac/encode.c b/src/flac/encode.c index e99e1738..4b105ca9 100644 --- a/src/flac/encode.c +++ b/src/flac/encode.c @@ -1658,7 +1658,7 @@ int EncoderSession_finish_ok(EncoderSession *e, int info_align_carry, int info_a "FAILURE: Compression failed (ratio %0.3f, should be < 1.0).\n" "This happens for some files for one or more of the following reasons:\n" " * Recompressing an existing FLAC from a higher to a lower compression setting.\n" - " * Insufficient input data (eg, very short files, < 10000 fames).\n" + " * Insufficient input data (eg, very short files, < 10000 frames).\n" " * The audio data is not compressable (eg a full range white noise signal).\n" , e->compression_ratio); if (error_on_compression_fail) diff --git a/src/share/grabbag/snprintf.c b/src/share/grabbag/snprintf.c index ff73b6fd..3a0661f0 100644 --- a/src/share/grabbag/snprintf.c +++ b/src/share/grabbag/snprintf.c @@ -39,7 +39,7 @@ #include "share/compat.h" /* - * FLAC needs to compile and work correctly on systems with a norrmal ISO C99 + * FLAC needs to compile and work correctly on systems with a normal ISO C99 * snprintf as well as Microsoft Visual Studio which has an non-standards * conformant snprint_s function. *