From 9a8722864238d3d76ad5966ec3a617a072211d58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Thu, 3 Apr 2008 11:22:14 +0000 Subject: [PATCH] * Removed the "transaction_changed" leftover member. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24769 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/cache/block_cache.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/system/kernel/cache/block_cache.cpp b/src/system/kernel/cache/block_cache.cpp index e98fe22b0f..e6172bde96 100644 --- a/src/system/kernel/cache/block_cache.cpp +++ b/src/system/kernel/cache/block_cache.cpp @@ -106,7 +106,6 @@ struct block_cache : DoublyLinkedListLinkImpl { int32 next_transaction_id; cache_transaction *last_transaction; hash_table *transaction_hash; - int32 transaction_changed; object_cache *buffer_cache; block_list unused_blocks; @@ -545,7 +544,6 @@ block_cache::block_cache(int _fd, off_t numBlocks, size_t blockSize, next_transaction_id(1), last_transaction(NULL), transaction_hash(NULL), - transaction_changed(0), num_dirty_blocks(0), read_only(readOnly), deleting(false)