From 9cc679bb80469dfe97c7061c771d952ca8f274bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sun, 17 Jun 2007 11:57:25 +0000 Subject: [PATCH] replaced uint32_t by fssh_addr_t. Obviously, the cookie should be managed differently. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21432 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tools/fs_shell/block_cache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/fs_shell/block_cache.cpp b/src/tools/fs_shell/block_cache.cpp index 2d24852d5e..881bac5f9e 100644 --- a/src/tools/fs_shell/block_cache.cpp +++ b/src/tools/fs_shell/block_cache.cpp @@ -951,7 +951,7 @@ fssh_cache_next_block_in_transaction(void *_cache, int32_t id, uint32_t *_cookie if (_unchangedData) *_unchangedData = block->original_data; - *_cookie = (uint32_t)block; + *_cookie = (fssh_addr_t)block; return FSSH_B_OK; }