From e36e50146adf94719792075cee7c3c959b7146ea Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Mon, 15 Nov 2010 18:05:49 +0000 Subject: [PATCH] Err, oops. Made it const to verify that it wasn't altered, but forgot to revert before commit. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@295031 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- tests/test_expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_expr.c b/tests/test_expr.c index d5ae6f540b..35f754edda 100644 --- a/tests/test_expr.c +++ b/tests/test_expr.c @@ -43,7 +43,7 @@ AST_TEST_DEFINE(expr_test) { int res = AST_TEST_PASS, i, len; struct { - const char *input; + char *input; const char *output; } tests[] = { { "2 + 2", "4" },