diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2015-09-22 00:26:51 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2015-09-22 00:26:51 (GMT) |
commit | fb238c24a5c6679c7555c95f887b7f4a49dbb640 (patch) | |
tree | f3d4107271fa1c56c9a9beae272653acb95d5527 /src/H5FL.c | |
parent | 0be8c1687945eb0e55fac84c7aa9901ca9898a26 (diff) | |
download | hdf5-fb238c24a5c6679c7555c95f887b7f4a49dbb640.zip hdf5-fb238c24a5c6679c7555c95f887b7f4a49dbb640.tar.gz hdf5-fb238c24a5c6679c7555c95f887b7f4a49dbb640.tar.bz2 |
[svn-r27849] Description:
Normalize against incoming changes on VDS branch.
Tested on:
MacOSX/64 10.10.5 (amazon) w/serial
(h5committest forthcoming)
Diffstat (limited to 'src/H5FL.c')
-rw-r--r-- | src/H5FL.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -204,8 +204,8 @@ H5FL_term_package(void) /* Dump information about all the outstanding allocations */ while(trk != NULL) { /* Print information about the outstanding block */ - HDfprintf(stderr,"%s: Outstanding allocation:\n", "H5FL_term_package"); - HDfprintf(stderr,"\tFile: %s, Function: %s, Line: %d\n", trk->file, trk->func, trk->line); + HDfprintf(stderr,"%s: Outstanding allocation:\n", FUNC); + HDfprintf(stderr,"\tPtr: %p, File: %s, Function: %s, Line: %d\n", (((unsigned char *)trk) + sizeof(H5FL_track_t)), trk->file, trk->func, trk->line); H5CS_print_stack(trk->stack, stderr); /* Advance to next node */ |