From: Tilghman Lesher Date: Tue, 25 Aug 2009 19:28:42 +0000 (+0000) Subject: I should always compile before committing... X-Git-Tag: 1.4.26.2~4^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a45f5e5be0b557a6103649ee0f851ec072c91b5f;p=thirdparty%2Fasterisk.git I should always compile before committing... git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@214069 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/say.c b/main/say.c index b3c315e4dd..439855bf4a 100644 --- a/main/say.c +++ b/main/say.c @@ -3477,6 +3477,12 @@ int ast_say_date_with_format_en(struct ast_channel *chan, time_t time, const cha 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) { @@ -3682,12 +3688,6 @@ int ast_say_date_with_format_da(struct ast_channel *chan, time_t time, const cha return res; } -char next_item(const char *format) -{ - const char *next = ast_skip_blanks(format); - return *next; -} - /* German syntax */ int ast_say_date_with_format_de(struct ast_channel *chan, time_t time, const char *ints, const char *lang, const char *format, const char *timezone) {