Author: mturk Date: Mon Jan 11 08:10:58 2010 New Revision: 897784 URL: http://svn.apache.org/viewvc?rev=897784&view=rev Log: Axe extra const
Modified: commons/sandbox/runtime/trunk/src/main/native/port/shquote.c Modified: commons/sandbox/runtime/trunk/src/main/native/port/shquote.c URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/port/shquote.c?rev=897784&r1=897783&r2=897784&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/port/shquote.c (original) +++ commons/sandbox/runtime/trunk/src/main/native/port/shquote.c Mon Jan 11 08:10:58 2010 @@ -163,7 +163,7 @@ rv = 0; if (argc < 0) { - const char *const *ap = argv; + char *const *ap = argv; argc = 0; if (ap) { while (*ap) { @@ -315,7 +315,7 @@ rv = 0; if (argc < 0) { - const wchar_t *const *ap = argv; + wchar_t *const *ap = argv; argc = 0; if (ap) { while (*ap) {