aboutsummaryrefslogtreecommitdiffstats
path: root/main/frame.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-06 07:28:56 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-06 07:28:56 +0000
commit0a0c8869de31bb9f76c2baecf48917c0824895c4 (patch)
tree27838547cec4633c54c59f30624fe0e640633c38 /main/frame.c
parent8048b9c7182af432df0b85927e96fe6b797be420 (diff)
Staticize one, and Constify a bunch of usage strings for CLI commands.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48303 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/frame.c')
-rw-r--r--main/frame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/frame.c b/main/frame.c
index 6e539e7c9..52d5ecfc2 100644
--- a/main/frame.c
+++ b/main/frame.c
@@ -648,7 +648,7 @@ static int show_codecs(int fd, int argc, char *argv[])
return RESULT_SUCCESS;
}
-static char frame_show_codecs_usage[] =
+static const char frame_show_codecs_usage[] =
"Usage: core show codecs [audio|video|image]\n"
" Displays codec mapping\n";
@@ -877,7 +877,7 @@ static int show_frame_stats(int fd, int argc, char *argv[])
return RESULT_SUCCESS;
}
-static char frame_stats_usage[] =
+static const char frame_stats_usage[] =
"Usage: core show frame stats\n"
" Displays debugging statistics from framer\n";
#endif