summaryrefslogtreecommitdiffstats
path: root/Modules/expat/siphash.h
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-10-04 17:04:33 (GMT)
committerGitHub <noreply@github.com>2022-10-04 17:04:33 (GMT)
commit9b409e418ac2bfac62a4ee7f6514e093a14bf26e (patch)
treea210bcb092fd76e38418a9717736ca7e9eaa6606 /Modules/expat/siphash.h
parentf65f3a9daf8e7d0c6c90a86f0c5bbb10ae9191bc (diff)
downloadcpython-9b409e418ac2bfac62a4ee7f6514e093a14bf26e.zip
cpython-9b409e418ac2bfac62a4ee7f6514e093a14bf26e.tar.gz
cpython-9b409e418ac2bfac62a4ee7f6514e093a14bf26e.tar.bz2
[3.9] gh-97005: Update libexpat from 2.4.7 to 2.4.9 (gh-97006) (gh-97012)
gh-97005: Update libexpat from 2.4.7 to 2.4.9 (gh-97006) Co-authored-by: Gregory P. Smith [Google] <greg@krypto.org> (cherry picked from commit 10e3d398c31cc1695752fc52bc6ca2ce9ef6237e) Co-authored-by: Dong-hee Na <donghee.na@python.org> Co-authored-by: Ned Deily <nad@python.org>
Diffstat (limited to 'Modules/expat/siphash.h')
-rw-r--r--Modules/expat/siphash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/expat/siphash.h b/Modules/expat/siphash.h
index e5406d7..303283a 100644
--- a/Modules/expat/siphash.h
+++ b/Modules/expat/siphash.h
@@ -106,7 +106,7 @@
* if this code is included and compiled as C++; related GCC warning is:
* warning: use of C++11 long long integer constant [-Wlong-long]
*/
-#define _SIP_ULL(high, low) (((uint64_t)high << 32) | low)
+#define _SIP_ULL(high, low) ((((uint64_t)high) << 32) | (low))
#define SIP_ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b))))