| Index: core/fxcodec/codec/codec_int.h
|
| diff --git a/core/fxcodec/codec/codec_int.h b/core/fxcodec/codec/codec_int.h
|
| index e0d2ff494fef20e056a2f4786df18e89c18709d1..566bbc3c9b4e2b5eb80012b54ed26e81574bdfb5 100644
|
| --- a/core/fxcodec/codec/codec_int.h
|
| +++ b/core/fxcodec/codec/codec_int.h
|
| @@ -22,9 +22,9 @@ class CPDF_ColorSpace;
|
|
|
| struct DecodeData {
|
| public:
|
| - DecodeData(unsigned char* src_data, OPJ_SIZE_T src_size)
|
| - : src_data(src_data), src_size(src_size), offset(0) {}
|
| - unsigned char* src_data;
|
| + DecodeData(uint8_t* data, OPJ_SIZE_T size)
|
| + : src_data(data), src_size(size), offset(0) {}
|
| + uint8_t* src_data;
|
| OPJ_SIZE_T src_size;
|
| OPJ_SIZE_T offset;
|
| };
|
|
|