[svn-commits] mmichelson: branch 10-digiumphones r361292 - /branches/10-digiumphones/main/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Apr 5 12:40:28 CDT 2012


Author: mmichelson
Date: Thu Apr  5 12:40:24 2012
New Revision: 361292

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=361292
Log:
Fix a compiler error in pbx.c

This places a function declaration before its first invocation.


Modified:
    branches/10-digiumphones/main/pbx.c

Modified: branches/10-digiumphones/main/pbx.c
URL: http://svnview.digium.com/svn/asterisk/branches/10-digiumphones/main/pbx.c?view=diff&rev=361292&r1=361291&r2=361292
==============================================================================
--- branches/10-digiumphones/main/pbx.c (original)
+++ branches/10-digiumphones/main/pbx.c Thu Apr  5 12:40:24 2012
@@ -1051,6 +1051,8 @@
 	}
 }
 
+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)




More information about the svn-commits mailing list