From 79087cbbd515a108188b93cf732e5baa1b4f28d0 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Wed, 18 Jul 2012 17:18:20 +0000 Subject: 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. ........ Merged revisions 370183 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 370184 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@370187 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- funcs/func_lock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'funcs/func_lock.c') diff --git a/funcs/func_lock.c b/funcs/func_lock.c index 9394b3918..d8db10e84 100644 --- a/funcs/func_lock.c +++ b/funcs/func_lock.c @@ -99,7 +99,7 @@ static void lock_fixup(void *data, struct ast_channel *oldchan, struct ast_chann static int unloading = 0; static pthread_t broker_tid = AST_PTHREADT_NULL; -static struct ast_datastore_info lock_info = { +static const struct ast_datastore_info lock_info = { .type = "MUTEX", .destroy = lock_free, .chan_fixup = lock_fixup, -- cgit v1.2.3