[svn-commits] tilghman: branch 1.4 r214069 - /branches/1.4/main/say.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Aug 25 14:28:45 CDT 2009


Author: tilghman
Date: Tue Aug 25 14:28:42 2009
New Revision: 214069

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=214069
Log:
I should always compile before committing...

Modified:
    branches/1.4/main/say.c

Modified: branches/1.4/main/say.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.4/main/say.c?view=diff&rev=214069&r1=214068&r2=214069
==============================================================================
--- branches/1.4/main/say.c (original)
+++ branches/1.4/main/say.c Tue Aug 25 14:28:42 2009
@@ -3477,6 +3477,12 @@
 	return res;
 }
 
+static char next_item(const char *format)
+{
+	const char *next = ast_skip_blanks(format);
+	return *next;
+}
+
 /* Danish syntax */
 int ast_say_date_with_format_da(struct ast_channel *chan, time_t time, const char *ints, const char *lang, const char *format, const char *timezone)
 {
@@ -3680,12 +3686,6 @@
 		}
 	}
 	return res;
-}
-
-char next_item(const char *format)
-{
-	const char *next = ast_skip_blanks(format);
-	return *next;
 }
 
 /* German syntax */




More information about the svn-commits mailing list