diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-05-29 18:57:55 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-05-29 18:57:55 (GMT) |
commit | 7b0fa3950e74ea0c9bfe3baa07a48e2d451ebab5 (patch) | |
tree | 4ed484735050f8bd56ac870cddd4a9f55bc722ad /src | |
parent | bd2c3b52a8acf822d8cb97a365425b2c18dc0621 (diff) | |
download | hdf5-7b0fa3950e74ea0c9bfe3baa07a48e2d451ebab5.zip hdf5-7b0fa3950e74ea0c9bfe3baa07a48e2d451ebab5.tar.gz hdf5-7b0fa3950e74ea0c9bfe3baa07a48e2d451ebab5.tar.bz2 |
[svn-r13811] Description:
Update information printed when the file module's debugging is enabled
and file memory is leaked.
Tested on:
Linux/32 2.6 (chicago)
Diffstat (limited to 'src')
-rw-r--r-- | src/H5FD.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2530,7 +2530,7 @@ HDfprintf(stderr, "%s: Reducing file size to = %a\n", FUNC, last->addr); } else { /* leak memory */ #ifdef H5F_DEBUG -HDfprintf(stderr, "%s: LEAKED MEMORY!!!!!!\n", FUNC); +HDfprintf(stderr, "%s: LEAKED MEMORY!!! type = %u, addr = %a, size = %Hu\n", FUNC, (unsigned)type, addr, size); #endif /* H5F_DEBUG */ } /* end else */ |