aboutsummaryrefslogtreecommitdiffstats
path: root/funcs/func_blacklist.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-07 19:00:36 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-07 19:00:36 +0000
commitbfdb62e093a34cc63be4eb4a04b053a257628f01 (patch)
treeb32d4c2f78aad5e43c32f1fccb2945fa40fabf22 /funcs/func_blacklist.c
parentb218a25733127773940a60371c9eb685a47f9236 (diff)
One const, two const. Let's stick with everything else - one const. Plus older versions of GCC don't support double const either.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@49816 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs/func_blacklist.c')
-rw-r--r--funcs/func_blacklist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcs/func_blacklist.c b/funcs/func_blacklist.c
index fb6195fb1..d3f829d10 100644
--- a/funcs/func_blacklist.c
+++ b/funcs/func_blacklist.c
@@ -47,7 +47,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/astdb.h"
#include "asterisk/options.h"
-static int blacklist_read(struct ast_channel *chan, const const char *cmd, char *data, char *buf, size_t len)
+static int blacklist_read(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len)
{
char blacklist[1];
int bl = 0;