summaryrefslogtreecommitdiff
path: root/mysys/mf_iocache.c
diff options
context:
space:
mode:
authormonty@mysql.com <>2004-08-23 13:46:51 +0300
committermonty@mysql.com <>2004-08-23 13:46:51 +0300
commit309d691e65ae9953f637bda88d24672537ddf6d0 (patch)
tree31ceb8889afc4b529a25bc930d8aa8a41d83ceb2 /mysys/mf_iocache.c
parent84d9b862f6619c74de00349e9398f11ec6409d10 (diff)
downloadmariadb-git-309d691e65ae9953f637bda88d24672537ddf6d0.tar.gz
Changed %lx -> 0x%lx (for easier comparison of debug files)
Cosmetic cleanups Don't call 'delete_elements' on copy_funcs as this causes elements to be freed twice
Diffstat (limited to 'mysys/mf_iocache.c')
-rw-r--r--mysys/mf_iocache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/mf_iocache.c b/mysys/mf_iocache.c
index f16f2b7ab72..f109df912f1 100644
--- a/mysys/mf_iocache.c
+++ b/mysys/mf_iocache.c
@@ -140,7 +140,7 @@ int init_io_cache(IO_CACHE *info, File file, uint cachesize,
uint min_cache;
my_off_t end_of_file= ~(my_off_t) 0;
DBUG_ENTER("init_io_cache");
- DBUG_PRINT("enter",("cache: %lx type: %d pos: %ld",
+ DBUG_PRINT("enter",("cache: 0x%lx type: %d pos: %ld",
(ulong) info, (int) type, (ulong) seek_offset));
info->file= file;
@@ -290,7 +290,7 @@ my_bool reinit_io_cache(IO_CACHE *info, enum cache_type type,
pbool clear_cache)
{
DBUG_ENTER("reinit_io_cache");
- DBUG_PRINT("enter",("cache: %lx type: %d seek_offset: %lu clear_cache: %d",
+ DBUG_PRINT("enter",("cache: 0x%lx type: %d seek_offset: %lu clear_cache: %d",
(ulong) info, type, (ulong) seek_offset,
(int) clear_cache));