[xml-security-c] 20/21: Avoid GCC warning suggesting parentheses
Ferenc Wágner
wferi-guest at moszumanska.debian.org
Mon Jun 27 12:20:26 UTC 2016
This is an automated email from the git hooks/post-receive script.
wferi-guest pushed a commit to branch patch-queue/warn-fixes
in repository xml-security-c.
commit 7e428d6eb7a942187570dcdff0b2fd748aed18a5
Author: Ferenc Wágner <wferi at niif.hu>
Date: Sun Jan 31 01:26:38 2016 +0100
Avoid GCC warning suggesting parentheses
---
xsec/utils/XSECDOMUtils.cpp | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/xsec/utils/XSECDOMUtils.cpp b/xsec/utils/XSECDOMUtils.cpp
index 4937434..486a33d 100644
--- a/xsec/utils/XSECDOMUtils.cpp
+++ b/xsec/utils/XSECDOMUtils.cpp
@@ -709,9 +709,9 @@ XMLCh * decodeDName(const XMLCh * toDecode) {
static bool isHexDigit(const XMLCh toCheck)
{
- if ((toCheck >= chDigit_0) && (toCheck <= chDigit_9)
- || (toCheck >= chLatin_A) && (toCheck <= chLatin_F)
- || (toCheck >= chLatin_a) && (toCheck <= chLatin_f))
+ if ((toCheck >= chDigit_0 && toCheck <= chDigit_9)
+ || (toCheck >= chLatin_A && toCheck <= chLatin_F)
+ || (toCheck >= chLatin_a && toCheck <= chLatin_f))
{
return true;
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-shibboleth/xml-security-c.git
More information about the Pkg-shibboleth-devel
mailing list