make this compile again under devmode

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@205562 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Michiel van Baak
2009-07-09 14:10:01 +00:00
parent 0d19ab4efe
commit b31302d55d

View File

@@ -89,7 +89,7 @@ static char cel_dateformat[256];
/*!
* \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 @@ static const char const *cel_event_types[CEL_MAX_EVENT_IDS] = {
/*!
* \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",