From 1b57426e3a7842b4e6f9fc13ffb657c78e5443d4 Mon Sep 17 00:00:00 2001 From: Erlend Egeberg Aasland Date: Sun, 14 Feb 2021 15:14:26 +0100 Subject: bpo-43210: Fix byteswap comment in sha512.module.c (GH-24518) --- Modules/sha512module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/sha512module.c b/Modules/sha512module.c index 062343e71ff..0d8f51e5ae5 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" -- cgit v1.2.3-65-gdbad