]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43210: Fix byteswap comment in sha512.module.c (GH-24518)
authorErlend Egeberg Aasland <erlend.aasland@innova.no>
Sun, 14 Feb 2021 14:14:26 +0000 (15:14 +0100)
committerGitHub <noreply@github.com>
Sun, 14 Feb 2021 14:14:26 +0000 (23:14 +0900)
Modules/sha512module.c

index 062343e71ff1443607dd25e5e8bcb6e420657917..0d8f51e5ae5e009b064b6bae076d76f0c13baf78 100644 (file)
@@ -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"