Ensure that all ast_datastore_info structures are 'const'.

While addressing a bug, I came across a instance of 'struct ast_datastore_info'
that was not declared 'const'. Since the API already expects them to be
'const', this patch changes the declarations of all existing instances
that were not already declared that way.



git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@370183 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2012-07-18 17:10:36 +00:00
parent 3d331187af
commit ecbaf1ee3f
13 changed files with 19 additions and 19 deletions

View File

@@ -212,7 +212,7 @@ static const char * const app_pop = "StackPop";
static void gosub_free(void *data);
static struct ast_datastore_info stack_info = {
static const struct ast_datastore_info stack_info = {
.type = "GOSUB",
.destroy = gosub_free,
};