From: Victor Stinner Date: Mon, 21 Mar 2016 22:05:08 +0000 (+0100) Subject: Issue #26588: Fix compilation warning on Windows X-Git-Tag: v3.6.0a1~414 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b32a7edb22805daa28f486271ca5052e1ad87633;p=python Issue #26588: Fix compilation warning on Windows --- diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index 6799eb6b64..3c5319b734 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -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;