summaryrefslogtreecommitdiffstats
path: root/Python/pyhash.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-02-09 15:31:26 (GMT)
committerGitHub <noreply@github.com>2018-02-09 15:31:26 (GMT)
commitbfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e (patch)
treeb0bdd00da587355830e8b18fbadc72054ae0ad0c /Python/pyhash.c
parent5bb0005f9ff768ac443924b4bb26c3818ce8dc5a (diff)
downloadcpython-bfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e.zip
cpython-bfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e.tar.gz
cpython-bfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e.tar.bz2
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 a0850d0..9e6e594 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;