mirror of
https://github.com/mirror/wget.git
synced 2025-01-04 01:10:28 +08:00
[svn] Prefix pointer value with 0x.
This commit is contained in:
parent
adcb1f10ec
commit
e4f85cdef3
@ -1,3 +1,8 @@
|
||||
2005-07-04 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* xmalloc.c (debugging_free): Prefix hex pointer value with "0x"
|
||||
when printing.
|
||||
|
||||
2005-07-04 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* utils.c (NEXT_BASE64_CHAR): Rename to NEXT_CHAR and simplify to
|
||||
|
@ -357,7 +357,7 @@ debugging_free (void *ptr, const char *source_file, int source_line)
|
||||
}
|
||||
if (!unregister_ptr (ptr))
|
||||
{
|
||||
fprintf (stderr, "%s: bad xfree(%0*lx) at %s:%d\n",
|
||||
fprintf (stderr, "%s: bad xfree(0x%0*lx) at %s:%d\n",
|
||||
exec_name, PTR_FORMAT (ptr), source_file, source_line);
|
||||
abort ();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user