From 97eac821349b42dafd33a05f194e96887bb1813c Mon Sep 17 00:00:00 2001 From: Mark Michelson Date: Thu, 5 Apr 2012 17:40:24 +0000 Subject: [PATCH] Fix a compiler error in pbx.c This places a function declaration before its first invocation. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10-digiumphones@361292 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/pbx.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/pbx.c b/main/pbx.c index 5c2092a6f6..2f76aaecf9 100644 --- a/main/pbx.c +++ b/main/pbx.c @@ -1051,6 +1051,8 @@ static void hintdevice_destroy(void *obj) } } +static char *parse_hint_device(struct ast_str *hint_args); + /*! \brief add hintdevice structure and link it into the container. */ static int add_hintdevice(struct ast_hint *hint, const char *devicelist) -- 2.47.3