summaryrefslogtreecommitdiff
path: root/main/channel.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-12-06 07:28:56 +0000
committerRussell Bryant <russell@russellbryant.com>2006-12-06 07:28:56 +0000
commit17a2888d2ecce2be86805e0350fa68c6a2298b71 (patch)
tree27838547cec4633c54c59f30624fe0e640633c38 /main/channel.c
parenta44e55a3f3efdc5dde27954dfcf5e1e5da579971 (diff)
Staticize one, and Constify a bunch of usage strings for CLI commands.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48303 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/channel.c b/main/channel.c
index 95f241d64..ac59eb352 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -289,11 +289,11 @@ static char *complete_channeltypes(const char *line, const char *word, int pos,
return ret;
}
-static char show_channeltypes_usage[] =
+static const char show_channeltypes_usage[] =
"Usage: core show channeltypes\n"
" Lists available channel types registered in your Asterisk server.\n";
-static char show_channeltype_usage[] =
+static const char show_channeltype_usage[] =
"Usage: core show channeltype <name>\n"
" Show details about the specified channel type, <name>.\n";