[svn-commits] tilghman: branch 1.4 r295031 - /branches/1.4/tests/test_expr.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Nov 15 12:05:51 CST 2010


Author: tilghman
Date: Mon Nov 15 12:05:49 2010
New Revision: 295031

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=295031
Log:
Err, oops.  Made it const to verify that it wasn't altered, but forgot to revert before commit.

Modified:
    branches/1.4/tests/test_expr.c

Modified: branches/1.4/tests/test_expr.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/tests/test_expr.c?view=diff&rev=295031&r1=295030&r2=295031
==============================================================================
--- branches/1.4/tests/test_expr.c (original)
+++ branches/1.4/tests/test_expr.c Mon Nov 15 12:05:49 2010
@@ -43,7 +43,7 @@
 {
 	int res = AST_TEST_PASS, i, len;
 	struct {
-		const char *input;
+		char *input;
 		const char *output;
 	} tests[] = {
 		{ "2 + 2", "4" },




More information about the svn-commits mailing list