| Index: fpdfsdk/pdfwindow/PWL_Utils.h
|
| diff --git a/fpdfsdk/pdfwindow/PWL_Utils.h b/fpdfsdk/pdfwindow/PWL_Utils.h
|
| index fed1528294e0fa5ab12fc6df43b9e69adbeee895..691708366180aa085f53f061723d81e899b9690e 100644
|
| --- a/fpdfsdk/pdfwindow/PWL_Utils.h
|
| +++ b/fpdfsdk/pdfwindow/PWL_Utils.h
|
| @@ -27,7 +27,7 @@ T PWL_MAX(const T& i, const T& j) {
|
| #define PWL_WIN2PDF(color) ((FX_FLOAT)((FX_FLOAT)color / 255.0f))
|
|
|
| #define PWL_MAKEDWORD(low, high) \
|
| - ((FX_DWORD)((uint16_t)(low) | (FX_DWORD)(((uint16_t)(high)) << 16)))
|
| + ((uint32_t)((uint16_t)(low) | (uint32_t)(((uint16_t)(high)) << 16)))
|
| #define PWL_GETLOWWORD(dword) ((uint16_t)(dword))
|
| #define PWL_GETHIGHWORD(dword) ((uint16_t)(dword >> 16))
|
|
|
|
|