[MPlayer-cvslog] r23038 - trunk/libass/ass_cache.c
eugeni
subversion at mplayerhq.hu
Sat Apr 21 01:09:06 CEST 2007
Author: eugeni
Date: Sat Apr 21 01:09:06 2007
New Revision: 23038
Modified:
trunk/libass/ass_cache.c
Log:
Oops, fix compilation broken in r23037.
Modified: trunk/libass/ass_cache.c
==============================================================================
--- trunk/libass/ass_cache.c (original)
+++ trunk/libass/ass_cache.c Sat Apr 21 01:09:06 2007
@@ -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) {
More information about the MPlayer-cvslog
mailing list