summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-01-30 12:19:29 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-01-30 12:19:29 +0000
commita711971bf7b787e4bed51f2c78cb6603660e3611 (patch)
tree0549cd56dc439aba54ca8e9cf76c94d8624a5462
parentaaf7ecd73d2105d70c996b7dcd23abe7877989ab (diff)
downloadpcre-a711971bf7b787e4bed51f2c78cb6603660e3611.tar.gz
One more cast to avoid compiler warning about 'const'.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@908 2f5784b3-3f2a-0410-8824-cb99058d5e15
-rw-r--r--pcretest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcretest.c b/pcretest.c
index c6e1e4f..bdef2bb 100644
--- a/pcretest.c
+++ b/pcretest.c
@@ -2411,7 +2411,7 @@ are set, either both UTFs are supported or both are not supported. */
if (rc)
{
const char *arch;
- (void)PCRE_CONFIG(PCRE_CONFIG_JITTARGET, &arch);
+ (void)PCRE_CONFIG(PCRE_CONFIG_JITTARGET, (void *)(&arch));
printf(" Just-in-time compiler support: %s\n", arch);
}
else