summaryrefslogtreecommitdiff
path: root/src/pcre2_dfa_match.c
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2016-10-15 09:21:12 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2016-10-15 09:21:12 +0000
commita4271513598f353b9a56fa1a6cb131b4aa09e5d0 (patch)
tree0be2bf31223511d144f78178c51a0392951476ce /src/pcre2_dfa_match.c
parent8e31141b512e3009a372a693e98d6aa65cbc29b6 (diff)
downloadpcre2-a4271513598f353b9a56fa1a6cb131b4aa09e5d0.tar.gz
Correct a couple of size_t that should be PCRE2_SIZE.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@570 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'src/pcre2_dfa_match.c')
-rw-r--r--src/pcre2_dfa_match.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcre2_dfa_match.c b/src/pcre2_dfa_match.c
index 12b31b1..07281be 100644
--- a/src/pcre2_dfa_match.c
+++ b/src/pcre2_dfa_match.c
@@ -3115,7 +3115,7 @@ Returns: > 0 => number of match offset pairs placed in offsets
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
pcre2_dfa_match(const pcre2_code *code, PCRE2_SPTR subject, PCRE2_SIZE length,
PCRE2_SIZE start_offset, uint32_t options, pcre2_match_data *match_data,
- pcre2_match_context *mcontext, int *workspace, size_t wscount)
+ pcre2_match_context *mcontext, int *workspace, PCRE2_SIZE wscount)
{
const pcre2_real_code *re = (const pcre2_real_code *)code;