trivial compiler warning fix.

git-svn-id: http://s3fs.googlecode.com/svn/trunk@344 df820570-a93a-0410-bd06-b72b767a4274
This commit is contained in:
ben.lemasurier@gmail.com 2011-06-22 22:32:08 +00:00
parent 30abdff53f
commit 94d72bdaf3

View File

@ -80,7 +80,7 @@ void delete_stat_cache_entry(const char *path) {
void truncate_stat_cache() {
string path_to_delete;
unsigned int hit_count = 0;
unsigned int lowest_hit_count = NULL;
unsigned int lowest_hit_count = 0;
pthread_mutex_lock(&stat_cache_lock);
stat_cache_t::iterator iter;