aboutsummaryrefslogtreecommitdiffstats
path: root/formats
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-08 00:09:04 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-08 00:09:04 +0000
commit5f3ef918a33e17eb79adae00e7959424914d0f1d (patch)
tree0d76564f9188c8bfba116b11ce82da60b440b6f6 /formats
parenta9ea6aee046fbdb998f6c6595fef889a12e6c38d (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.4@186841 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'formats')
-rw-r--r--formats/format_wav.c2
-rw-r--r--formats/format_wav_gsm.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/formats/format_wav.c b/formats/format_wav.c
index a2acad87b..de92e881e 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 a7b2310bd..f82f9bc23 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 */