summaryrefslogtreecommitdiff
path: root/apps/app_stack.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2009-05-12 13:59:35 +0000
committerKevin P. Fleming <kpfleming@digium.com>2009-05-12 13:59:35 +0000
commit1c988d8996678d782ab6cc50e352b4870eb6fd5d (patch)
tree8620c3af779d31967e65ebcbb1ad0e41eebbe372 /apps/app_stack.c
parent59e8829e36239f7fa0aa87daac0e29259789e8df (diff)
add 'const' qualifiers in various places where they should have been
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@193832 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_stack.c')
-rw-r--r--apps/app_stack.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/app_stack.c b/apps/app_stack.c
index a3a1bf401..83d204b55 100644
--- a/apps/app_stack.c
+++ b/apps/app_stack.c
@@ -166,10 +166,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
</function>
***/
-static const char *app_gosub = "Gosub";
-static const char *app_gosubif = "GosubIf";
-static const char *app_return = "Return";
-static const char *app_pop = "StackPop";
+static const char * const app_gosub = "Gosub";
+static const char * const app_gosubif = "GosubIf";
+static const char * const app_return = "Return";
+static const char * const app_pop = "StackPop";
static void gosub_free(void *data);