Issue #26588: Fix compilation warning on Windows

This commit is contained in:
Victor Stinner 2016-03-21 23:05:08 +01:00
parent 285cf0a601
commit b32a7edb22
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ raw_free(void *ptr)
static Py_uhash_t
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);
return traceback->hash;