summaryrefslogtreecommitdiff
path: root/pcre_config.c
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2009-03-01 12:00:59 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2009-03-01 12:00:59 +0000
commit6099fcbf59090ab631a52b8bb216d38bf4af8c70 (patch)
treeb8bce7d3e3aa20ff050afdcf0db58f21b9ef9ec0 /pcre_config.c
parentfe0dcd7f2edc025240f59e1d4a3361abaedc812f (diff)
downloadpcre-6099fcbf59090ab631a52b8bb216d38bf4af8c70.tar.gz
Bug fixes: forgot to commit these individually.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@376 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre_config.c')
-rw-r--r--pcre_config.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pcre_config.c b/pcre_config.c
index 114f0fb..78e8560 100644
--- a/pcre_config.c
+++ b/pcre_config.c
@@ -6,7 +6,7 @@
and semantics are as close as possible to those of the Perl 5 language.
Written by Philip Hazel
- Copyright (c) 1997-2008 University of Cambridge
+ Copyright (c) 1997-2009 University of Cambridge
-----------------------------------------------------------------------------
Redistribution and use in source and binary forms, with or without
@@ -104,11 +104,11 @@ switch (what)
break;
case PCRE_CONFIG_MATCH_LIMIT:
- *((unsigned int *)where) = MATCH_LIMIT;
+ *((unsigned long int *)where) = MATCH_LIMIT;
break;
case PCRE_CONFIG_MATCH_LIMIT_RECURSION:
- *((unsigned int *)where) = MATCH_LIMIT_RECURSION;
+ *((unsigned long int *)where) = MATCH_LIMIT_RECURSION;
break;
case PCRE_CONFIG_STACKRECURSE: