commit | 1b57426e3a7842b4e6f9fc13ffb657c78e5443d4 | [log] [tgz] |
---|---|---|
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | Sun Feb 14 15:14:26 2021 +0100 |
committer | GitHub <noreply@github.com> | Sun Feb 14 23:14:26 2021 +0900 |
tree | 5f795702245175f6bc2e7c7bd1f93363d27073fb | |
parent | 3cf0833f42ebde24f6435b838785ca4f946b988f [diff] [blame] |
bpo-43210: Fix byteswap comment in sha512.module.c (GH-24518)
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"