aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/PCRE.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/PCRE.cc')
-rw-r--r--libqpdf/PCRE.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libqpdf/PCRE.cc b/libqpdf/PCRE.cc
index 2e808aa7..1e5585b0 100644
--- a/libqpdf/PCRE.cc
+++ b/libqpdf/PCRE.cc
@@ -166,7 +166,7 @@ PCRE::match(char const* subject, int options, int startoffset, int size)
{
if (size == -1)
{
- size = strlen(subject);
+ size = (int) strlen(subject);
}
Match result(this->nbackrefs, subject);