From: Mark Michelson Date: Wed, 8 Apr 2009 00:09:04 +0000 (+0000) Subject: Fix a few typos of the word "frequency." X-Git-Tag: 1.4.25-rc1~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c97fd86c5f62750781a9f8f4ce62f8a30b58486;p=thirdparty%2Fasterisk.git Fix a few typos of the word "frequency." (closes issue #14842) Reported by: jvandal Patches: frequency-typo.diff uploaded by jvandal (license 413) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@186841 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/formats/format_wav.c b/formats/format_wav.c index a2acad87be..de92e881e7 100644 --- a/formats/format_wav.c +++ b/formats/format_wav.c @@ -153,7 +153,7 @@ static int check_header(FILE *f) return -1; } if (ltohl(freq) != DEFAULT_SAMPLE_RATE) { - ast_log(LOG_WARNING, "Unexpected freqency %d\n", ltohl(freq)); + ast_log(LOG_WARNING, "Unexpected frequency %d\n", ltohl(freq)); return -1; } /* Ignore the byte frequency */ diff --git a/formats/format_wav_gsm.c b/formats/format_wav_gsm.c index a7b2310bd5..f82f9bc23e 100644 --- a/formats/format_wav_gsm.c +++ b/formats/format_wav_gsm.c @@ -163,7 +163,7 @@ static int check_header(FILE *f) return -1; } if (ltohl(freq) != DEFAULT_SAMPLE_RATE) { - ast_log(LOG_WARNING, "Unexpected freqency %d\n", ltohl(freq)); + ast_log(LOG_WARNING, "Unexpected frequency %d\n", ltohl(freq)); return -1; } /* Ignore the byte frequency */