From 0e09451cfbf757c51ef429eccbf8864d8cfb2a96 Mon Sep 17 00:00:00 2001 From: janwas Date: Sat, 25 Mar 2006 21:44:25 +0000 Subject: [PATCH] # bugfix avoid warning due to imbalanced buffer count This was SVN commit r3687. --- source/lib/res/file/trace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/res/file/trace.cpp b/source/lib/res/file/trace.cpp index 119d4db575..7039d7e6bb 100644 --- a/source/lib/res/file/trace.cpp +++ b/source/lib/res/file/trace.cpp @@ -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");