Commit b32a7edb authored by Victor Stinner's avatar Victor Stinner

Issue #26588: Fix compilation warning on Windows

parent 285cf0a6
...@@ -247,7 +247,7 @@ raw_free(void *ptr) ...@@ -247,7 +247,7 @@ raw_free(void *ptr)
static Py_uhash_t static Py_uhash_t
hashtable_hash_traceback(size_t key_size, const void *pkey) hashtable_hash_traceback(size_t key_size, const void *pkey)
{ {
const traceback_t *traceback; traceback_t *traceback;
_Py_HASHTABLE_READ_KEY(key_size, pkey, traceback); _Py_HASHTABLE_READ_KEY(key_size, pkey, traceback);
return traceback->hash; return traceback->hash;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment