summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-08-01 03:14:11 +0000
committerMark Spencer <markster@digium.com>2004-08-01 03:14:11 +0000
commitb240128ed40eaf1a7f9a2019ac5b4a06cf2294cb (patch)
tree7465387af8050fe07b673dafcf44b07f7b75fdaf
parent70b3ab34a82ebae5fe23580de832088006f847fb (diff)
Make sure it's a const
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3557 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xinclude/asterisk/channel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index c5268a657..b12121947 100755
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -100,7 +100,7 @@ struct ast_channel {
/*! Lock, can be used to lock a channel for some operations */
ast_mutex_t lock;
/*! Procedure causing blocking */
- char *blockproc;
+ const char *blockproc;
/*! Current application */
char *appl;