aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/Pl_ASCIIHexDecoder.hh
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/qpdf/Pl_ASCIIHexDecoder.hh')
-rw-r--r--libqpdf/qpdf/Pl_ASCIIHexDecoder.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/libqpdf/qpdf/Pl_ASCIIHexDecoder.hh b/libqpdf/qpdf/Pl_ASCIIHexDecoder.hh
index 12808dc8..1d33afde 100644
--- a/libqpdf/qpdf/Pl_ASCIIHexDecoder.hh
+++ b/libqpdf/qpdf/Pl_ASCIIHexDecoder.hh
@@ -11,7 +11,7 @@ class Pl_ASCIIHexDecoder: public Pipeline
QPDF_DLL
virtual ~Pl_ASCIIHexDecoder();
QPDF_DLL
- virtual void write(unsigned char* buf, int len);
+ virtual void write(unsigned char* buf, size_t len);
QPDF_DLL
virtual void finish();
@@ -19,7 +19,7 @@ class Pl_ASCIIHexDecoder: public Pipeline
void flush();
char inbuf[3];
- int pos;
+ size_t pos;
bool eod;
};