summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2016-04-08 15:47:50 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2016-04-08 15:47:50 -0500
commit8610f4344fc2d83d0926fbf45b9f77d6fc26eea5 (patch)
tree86556572e8112be0b11cb44c344d5aa0d29a70e1 /include/asterisk
parentb47dfd1c6ead5c8783660465af997a4360555ea1 (diff)
parent6138a75e8e438bb92ef541a6339d2a20c5164fd0 (diff)
Merge "pbx.h: Make ast_state_cb_type take more const."
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/pbx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/pbx.h b/include/asterisk/pbx.h
index 18b576066..afdcc8da4 100644
--- a/include/asterisk/pbx.h
+++ b/include/asterisk/pbx.h
@@ -109,7 +109,7 @@ struct ast_state_cb_info {
};
/*! \brief Typedef for devicestate and hint callbacks */
-typedef int (*ast_state_cb_type)(char *context, char *id, struct ast_state_cb_info *info, void *data);
+typedef int (*ast_state_cb_type)(const char *context, const char *exten, struct ast_state_cb_info *info, void *data);
/*! \brief Typedef for devicestate and hint callback removal indication callback */
typedef void (*ast_state_cb_destroy_type)(int id, void *data);