From 285449a68f65ee1222f1890a79f50cd617bb53d9 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Wed, 19 Jan 2005 14:16:01 +0000 Subject: [PATCH] Default arg in implementation. Reported by Gert van Valkenhoef. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10872 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/core/cache/block_cache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kernel/core/cache/block_cache.cpp b/src/kernel/core/cache/block_cache.cpp index 00d072ee91..c91a118bf7 100644 --- a/src/kernel/core/cache/block_cache.cpp +++ b/src/kernel/core/cache/block_cache.cpp @@ -436,7 +436,7 @@ get_writable_cached_block(block_cache *cache, off_t blockNumber, off_t base, off static status_t -write_cached_block(block_cache *cache, cached_block *block, bool deleteTransaction = true) +write_cached_block(block_cache *cache, cached_block *block, bool deleteTransaction) { cache_transaction *previous = block->previous_transaction; int32 blockSize = cache->block_size;