diff options
author | serg@serg.mylan <> | 2005-03-09 14:09:06 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2005-03-09 14:09:06 +0100 |
commit | 956682de1a15d974e6ad034218bb14fa1d17a370 (patch) | |
tree | 4625d7f51e27bb495a5f571cfcad95a20d34e4a9 /innobase/buf/buf0lru.c | |
parent | c49928447df13564ad8c657bf01d8010c9732d0c (diff) | |
parent | c64b47fc0e4e834b0d7a449f6f948893e790e902 (diff) | |
download | mariadb-git-956682de1a15d974e6ad034218bb14fa1d17a370.tar.gz |
merged
Diffstat (limited to 'innobase/buf/buf0lru.c')
-rw-r--r-- | innobase/buf/buf0lru.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/innobase/buf/buf0lru.c b/innobase/buf/buf0lru.c index 8460a049d3e..18c4f8c10fb 100644 --- a/innobase/buf/buf0lru.c +++ b/innobase/buf/buf0lru.c @@ -878,11 +878,11 @@ buf_LRU_block_remove_hashed_page( (ulong) block->offset); if (buf_page_hash_get(block->space, block->offset)) { fprintf(stderr, -"InnoDB: From hash table we find block %lx of %lu %lu which is not %lx\n", - (ulong) buf_page_hash_get(block->space, block->offset), +"InnoDB: From hash table we find block %p of %lu %lu which is not %p\n", + buf_page_hash_get(block->space, block->offset), (ulong) buf_page_hash_get(block->space, block->offset)->space, (ulong) buf_page_hash_get(block->space, block->offset)->offset, - (ulong) block); + block); } #ifdef UNIV_DEBUG |