[asterisk-commits] mmichelson: trunk r186842 - in /trunk: ./ formats/

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


Author: mmichelson
Date: Tue Apr  7 19:09:28 2009
New Revision: 186842

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=186842
Log:
Merged revisions 186841 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r186841 | mmichelson | 2009-04-07 19:09:04 -0500 (Tue, 07 Apr 2009) | 8 lines
  
  Fix a few typos of the word "frequency."
  
  (closes issue #14842)
  Reported by: jvandal
  Patches:
        frequency-typo.diff uploaded by jvandal (license 413)
........

Modified:
    trunk/   (props changed)
    trunk/formats/format_wav.c
    trunk/formats/format_wav_gsm.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/formats/format_wav.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/formats/format_wav.c?view=diff&rev=186842&r1=186841&r2=186842
==============================================================================
--- trunk/formats/format_wav.c (original)
+++ trunk/formats/format_wav.c Tue Apr  7 19:09:28 2009
@@ -136,7 +136,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: trunk/formats/format_wav_gsm.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/formats/format_wav_gsm.c?view=diff&rev=186842&r1=186841&r2=186842
==============================================================================
--- trunk/formats/format_wav_gsm.c (original)
+++ trunk/formats/format_wav_gsm.c Tue Apr  7 19:09:28 2009
@@ -150,7 +150,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