1
0
forked from 0ad/0ad
avoid warning due to imbalanced buffer count

This was SVN commit r3687.
This commit is contained in:
janwas 2006-03-25 21:44:25 +00:00
parent cc26968249
commit 0e09451cfb

View File

@ -232,7 +232,7 @@ bool trace_entry_causes_io(const TraceEntry* ent)
}
case TO_FREE:
buf = file_cache_retrieve(atom_fn, &size, fc_flags|FC_NO_ACCOUNTING);
(void)file_buf_free(buf);
(void)file_buf_free(buf, fc_flags);
break;
default:
debug_warn("unknown TraceOp");