[svn-commits] mvanbaak: trunk r205562 - /trunk/main/cel.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jul 9 09:10:05 CDT 2009


Author: mvanbaak
Date: Thu Jul  9 09:10:01 2009
New Revision: 205562

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=205562
Log:
make this compile again under devmode

Modified:
    trunk/main/cel.c

Modified: trunk/main/cel.c
URL: http://svn.asterisk.org/svn-view/asterisk/trunk/main/cel.c?view=diff&rev=205562&r1=205561&r2=205562
==============================================================================
--- trunk/main/cel.c (original)
+++ trunk/main/cel.c Thu Jul  9 09:10:01 2009
@@ -89,7 +89,7 @@
 /*!
  * \brief Map of ast_cel_event_type to strings
  */
-static const char const *cel_event_types[CEL_MAX_EVENT_IDS] = {
+static const char * const cel_event_types[CEL_MAX_EVENT_IDS] = {
 	[0]                        = "ALL",
 	[AST_CEL_CHANNEL_START]    = "CHAN_START",
 	[AST_CEL_CHANNEL_END]      = "CHAN_END",
@@ -121,7 +121,7 @@
 /*!
  * \brief Map of ast_cel_ama_flags to strings
  */
-static const char const *cel_ama_flags[AST_CEL_AMA_FLAG_TOTAL] = {
+static const char * const cel_ama_flags[AST_CEL_AMA_FLAG_TOTAL] = {
 	[AST_CEL_AMA_FLAG_OMIT]          = "OMIT",
 	[AST_CEL_AMA_FLAG_BILLING]       = "BILLING",
 	[AST_CEL_AMA_FLAG_DOCUMENTATION] = "DOCUMENTATION",




More information about the svn-commits mailing list