summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rwxr-xr-xconfig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.c b/config.c
index 9de46a18f..817d6c9b6 100755
--- a/config.c
+++ b/config.c
@@ -71,7 +71,7 @@ void ast_destroy(struct ast_config *ast)
free(ast);
}
-int ast_true(char *s)
+int ast_true(const char *s)
{
if (!s)
return 0;
@@ -86,7 +86,7 @@ int ast_true(char *s)
return 0;
}
-int ast_false(char *s)
+int ast_false(const char *s)
{
if (!s)
return 0;