diff options
author | doko@ubuntu.com <doko@ubuntu.com> | 2016-05-18 01:06:01 +0200 |
---|---|---|
committer | doko@ubuntu.com <doko@ubuntu.com> | 2016-05-18 01:06:01 +0200 |
commit | bc7315068f188312e5c624ca57a3b010c7503eff (patch) | |
tree | 48b0e7e9b0c6c84785e5c15a6e24c0e74f8544fa /Modules/_tracemalloc.c | |
parent | 307676face1151e8429c49cb0f7343576eb342a0 (diff) | |
download | cpython-git-bc7315068f188312e5c624ca57a3b010c7503eff.tar.gz |
- make some internal symbols static
Diffstat (limited to 'Modules/_tracemalloc.c')
-rw-r--r-- | Modules/_tracemalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index beda2b612d..e3329c722f 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -262,7 +262,7 @@ hashtable_hash_pointer_t(_Py_hashtable_t *ht, const void *pkey) } -int +static int hashtable_compare_pointer_t(_Py_hashtable_t *ht, const void *pkey, const _Py_hashtable_entry_t *entry) { |