aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-08-25 19:28:42 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-08-25 19:28:42 +0000
commit3518843ecf69d1ddc633db9fb301b414aafd4b37 (patch)
tree6696bcdee1ea001f41eb1739693c828948cb9184 /main
parenta5dfafd95a5527a0b4d23c19c21ba98a0439a236 (diff)
I should always compile before committing...
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@214069 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/say.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/main/say.c b/main/say.c
index b3c315e4d..439855bf4 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)
{