diff options
Diffstat (limited to 'storage/heap/hp_delete.c')
-rw-r--r-- | storage/heap/hp_delete.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/heap/hp_delete.c b/storage/heap/hp_delete.c index 1cbfe7408d4..0c1c2c4c8f8 100644 --- a/storage/heap/hp_delete.c +++ b/storage/heap/hp_delete.c @@ -23,7 +23,7 @@ int heap_delete(HP_INFO *info, const uchar *record) HP_SHARE *share=info->s; HP_KEYDEF *keydef, *end, *p_lastinx; DBUG_ENTER("heap_delete"); - DBUG_PRINT("enter",("info: 0x%lx record: 0x%lx", (long) info, (long) record)); + DBUG_PRINT("enter",("info: %p record: %p", info, record)); test_active(info); @@ -139,8 +139,8 @@ int hp_delete_key(HP_INFO *info, register HP_KEYDEF *keyinfo, /* Save for heap_rnext/heap_rprev */ info->current_hash_ptr=last_ptr; info->current_ptr = last_ptr ? last_ptr->ptr_to_rec : 0; - DBUG_PRINT("info",("Corrected current_ptr to point at: 0x%lx", - (long) info->current_ptr)); + DBUG_PRINT("info",("Corrected current_ptr to point at: %p", + info->current_ptr)); } empty=pos; if (gpos) |