diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-02-09 15:56:34 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-02-09 15:56:34 (GMT) |
| commit | 7df80492fc91cb5f344ef53a1ccce9a5bd3f4855 (patch) | |
| tree | 3360e277fb6d0ef7fe9ce13b47fd60723a02b53d /Python/pyhash.c | |
| parent | 3a047a781a82e0a55c5dae1758e91f1f1ca76026 (diff) | |
| download | cpython-7df80492fc91cb5f344ef53a1ccce9a5bd3f4855.zip cpython-7df80492fc91cb5f344ef53a1ccce9a5bd3f4855.tar.gz cpython-7df80492fc91cb5f344ef53a1ccce9a5bd3f4855.tar.bz2 | |
Fix some warnings produced by different compilers. (GH-5593) (GH-5600)
(cherry picked from commit bfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Python/pyhash.c')
| -rw-r--r-- | Python/pyhash.c | 2 |
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; |
