aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-02-14 15:14:26 +0100
committerGitHub <noreply@github.com>2021-02-14 23:14:26 +0900
commit1b57426e3a7842b4e6f9fc13ffb657c78e5443d4 (patch)
tree5f795702245175f6bc2e7c7bd1f93363d27073fb
parentbpo-43152: Update assert statement to remove unused warning (GH-24473) (diff)
downloadcpython-1b57426e3a7842b4e6f9fc13ffb657c78e5443d4.tar.gz
cpython-1b57426e3a7842b4e6f9fc13ffb657c78e5443d4.tar.bz2
cpython-1b57426e3a7842b4e6f9fc13ffb657c78e5443d4.zip
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 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"