summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/cel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/cel.c b/main/cel.c
index 26b0fd9fa..e8bcc8734 100644
--- a/main/cel.c
+++ b/main/cel.c
@@ -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",