From: Erlend Egeberg Aasland Date: Sun, 14 Feb 2021 14:14:26 +0000 (+0100) Subject: bpo-43210: Fix byteswap comment in sha512.module.c (GH-24518) X-Git-Tag: v3.10.0a6~92 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1b57426e3a7842b4e6f9fc13ffb657c78e5443d4;p=thirdparty%2FPython%2Fcpython.git bpo-43210: Fix byteswap comment in sha512.module.c (GH-24518) --- diff --git a/Modules/sha512module.c b/Modules/sha512module.c index 062343e71ff1..0d8f51e5ae5e 100644 --- a/Modules/sha512module.c +++ b/Modules/sha512module.c @@ -17,7 +17,7 @@ /* SHA objects */ #include "Python.h" -#include "pycore_bitutils.h" // _Py_bswap32() +#include "pycore_bitutils.h" // _Py_bswap64() #include "structmember.h" // PyMemberDef #include "hashlib.h" #include "pystrhex.h"