mirror of
https://github.com/mpv-player/mpv
synced 2024-12-25 08:12:17 +00:00
Oops, fix compilation broken in r23037.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23038 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
d2d2e12a3c
commit
49a99955b7
@ -113,7 +113,7 @@ void hashmap_done(hashmap_t* map)
|
||||
int i;
|
||||
// print stats
|
||||
if (map->count > 0 || map->hit_count + map->miss_count > 0)
|
||||
mp_msg(MSGT_ASS, MSGL_DBG, "cache statistics: \n total accesses: %d\n hits: %d\n misses: %d\n object count: %d\n",
|
||||
mp_msg(MSGT_ASS, MSGL_V, "cache statistics: \n total accesses: %d\n hits: %d\n misses: %d\n object count: %d\n",
|
||||
map->hit_count + map->miss_count, map->hit_count, map->miss_count, map->count);
|
||||
|
||||
for (i = 0; i < map->nbuckets; ++i) {
|
||||
|
Loading…
Reference in New Issue
Block a user