diff options
author | weili <weili@chromium.org> | 2016-05-16 13:53:42 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-16 13:53:42 -0700 |
commit | 3cc01f2ba255f4b7584668ee2b8e5ed97792c26d (patch) | |
tree | 6a207d8910696ef1c28ef60a855ae266f81067cd /xfa/fgas/xml | |
parent | c6450bb06b69528406a2a261c70c4ea769965a8d (diff) | |
download | pdfium-3cc01f2ba255f4b7584668ee2b8e5ed97792c26d.tar.xz |
Fix the code that causes warnings
These are the left or newly added code which causes compilation
warnings of "signed and unsigned comparison". Need to fix them
before I re-enable the warning flag.
BUG=pdfium:29
Review-Url: https://codereview.chromium.org/1986533002
Diffstat (limited to 'xfa/fgas/xml')
-rw-r--r-- | xfa/fgas/xml/fgas_sax.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fgas/xml/fgas_sax.cpp b/xfa/fgas/xml/fgas_sax.cpp index b97aeb0a7c..1128e1184f 100644 --- a/xfa/fgas/xml/fgas_sax.cpp +++ b/xfa/fgas/xml/fgas_sax.cpp @@ -32,7 +32,7 @@ FX_BOOL CFX_SAXFile::StartFile(IFX_FileRead* pFile, if (dwStart >= dwSize) { return FALSE; } - if (dwLen == -1 || dwStart + dwLen > dwSize) { + if (dwLen == static_cast<uint32_t>(-1) || dwStart + dwLen > dwSize) { dwLen = dwSize - dwStart; } if (dwLen == 0) { |