From 230a66da7d98b2b6d328a04b0e7180b94d9c76bf Mon Sep 17 00:00:00 2001 From: kpfleming Date: Thu, 21 May 2009 21:13:09 +0000 Subject: Const-ify the world (or at least a good part of it) This patch adds 'const' tags to a number of Asterisk APIs where they are appropriate (where the API already demanded that the function argument not be modified, but the compiler was not informed of that fact). The list includes: - CLI command handlers - CLI command handler arguments - AGI command handlers - AGI command handler arguments - Dialplan application handler arguments - Speech engine API function arguments In addition, various file-scope and function-scope constant arrays got 'const' and/or 'static' qualifiers where they were missing. Review: https://reviewboard.asterisk.org/r/251/ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@196072 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_read.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'apps/app_read.c') diff --git a/apps/app_read.c b/apps/app_read.c index d845c5900..3e22d2ef8 100644 --- a/apps/app_read.c +++ b/apps/app_read.c @@ -122,9 +122,7 @@ AST_APP_OPTIONS(read_app_options, { static char *app = "Read"; -#define ast_next_data(instr,ptr,delim) if((ptr=strchr(instr,delim))) { *(ptr) = '\0' ; ptr++;} - -static int read_exec(struct ast_channel *chan, void *data) +static int read_exec(struct ast_channel *chan, const char *data) { int res = 0; char tmp[256] = ""; -- cgit v1.2.3