summaryrefslogtreecommitdiff
path: root/Python/pyhash.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-02-09 17:31:26 +0200
committerGitHub <noreply@github.com>2018-02-09 17:31:26 +0200
commitbfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e (patch)
treeb0bdd00da587355830e8b18fbadc72054ae0ad0c /Python/pyhash.c
parent5bb0005f9ff768ac443924b4bb26c3818ce8dc5a (diff)
downloadcpython-git-bfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e.tar.gz
Fix some warnings produced by different compilers. (#5593)
Diffstat (limited to 'Python/pyhash.c')
-rw-r--r--Python/pyhash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pyhash.c b/Python/pyhash.c
index a0850d066b..9e6e594f44 100644
--- a/Python/pyhash.c
+++ b/Python/pyhash.c
@@ -17,7 +17,7 @@
extern "C" {
#endif
-_Py_HashSecret_t _Py_HashSecret = {0};
+_Py_HashSecret_t _Py_HashSecret = {{0}};
#if Py_HASH_ALGORITHM == Py_HASH_EXTERNAL
extern PyHash_FuncDef PyHash_Func;