summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-02-14 14:14:26 (GMT)
committerGitHub <noreply@github.com>2021-02-14 14:14:26 (GMT)
commit1b57426e3a7842b4e6f9fc13ffb657c78e5443d4 (patch)
tree5f795702245175f6bc2e7c7bd1f93363d27073fb
parent3cf0833f42ebde24f6435b838785ca4f946b988f (diff)
downloadcpython-1b57426e3a7842b4e6f9fc13ffb657c78e5443d4.zip
cpython-1b57426e3a7842b4e6f9fc13ffb657c78e5443d4.tar.gz
cpython-1b57426e3a7842b4e6f9fc13ffb657c78e5443d4.tar.bz2
bpo-43210: Fix byteswap comment in sha512.module.c (GH-24518)
-rw-r--r--Modules/sha512module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/sha512module.c b/Modules/sha512module.c
index 062343e..0d8f51e 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"