[asterisk-commits] mmichelson: branch 1.4 r186841 - /branches/1.4/formats/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Apr 7 19:09:08 CDT 2009


Author: mmichelson
Date: Tue Apr  7 19:09:04 2009
New Revision: 186841

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=186841
Log:
Fix a few typos of the word "frequency."

(closes issue #14842)
Reported by: jvandal
Patches:
      frequency-typo.diff uploaded by jvandal (license 413)


Modified:
    branches/1.4/formats/format_wav.c
    branches/1.4/formats/format_wav_gsm.c

Modified: branches/1.4/formats/format_wav.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.4/formats/format_wav.c?view=diff&rev=186841&r1=186840&r2=186841
==============================================================================
--- branches/1.4/formats/format_wav.c (original)
+++ branches/1.4/formats/format_wav.c Tue Apr  7 19:09:04 2009
@@ -153,7 +153,7 @@
 		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 */

Modified: branches/1.4/formats/format_wav_gsm.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.4/formats/format_wav_gsm.c?view=diff&rev=186841&r1=186840&r2=186841
==============================================================================
--- branches/1.4/formats/format_wav_gsm.c (original)
+++ branches/1.4/formats/format_wav_gsm.c Tue Apr  7 19:09:04 2009
@@ -163,7 +163,7 @@
 		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 */




More information about the asterisk-commits mailing list