summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-10-27 14:32:33 -0700
committerCommit bot <commit-bot@chromium.org>2016-10-27 14:32:33 -0700
commit478ed62770e0dc0fe2d859e73496fa8c7f854694 (patch)
tree808e8576d0420f4bca099f5b265cca8ec09cd46e /xfa/fxfa/parser
parente93dbd6c18b8b58e5d6b4813052fafbc323e9692 (diff)
downloadpdfium-478ed62770e0dc0fe2d859e73496fa8c7f854694.tar.xz
Fix some FX_BOOL / int noise in fxfa
Review-Url: https://codereview.chromium.org/2457673003
Diffstat (limited to 'xfa/fxfa/parser')
-rw-r--r--xfa/fxfa/parser/cxfa_node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_node.cpp b/xfa/fxfa/parser/cxfa_node.cpp
index 9c209b23b7..402ab0e37e 100644
--- a/xfa/fxfa/parser/cxfa_node.cpp
+++ b/xfa/fxfa/parser/cxfa_node.cpp
@@ -3811,7 +3811,7 @@ FX_BOOL CXFA_Node::TryBoolean(XFA_ATTRIBUTE eAttr,
void* pValue = nullptr;
if (!GetValue(eAttr, XFA_ATTRIBUTETYPE_Boolean, bUseDefault, pValue))
return FALSE;
- bValue = (FX_BOOL)(uintptr_t)pValue;
+ bValue = !!pValue;
return TRUE;
}