diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/H5FD.c | 4 | ||||
-rw-r--r-- | src/Makefile.in | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -2847,7 +2847,7 @@ H5FDget_eoa(H5FD_t *file, H5FD_mem_t type) haddr_t ret_value; FUNC_ENTER_API(H5FDget_eoa, HADDR_UNDEF) - H5TRACE1("a", "x", file); + H5TRACE2("a", "xMt", file, type); /* Check args */ if(!file || !file->cls) @@ -2936,7 +2936,7 @@ H5FDset_eoa(H5FD_t *file, H5FD_mem_t type, haddr_t addr) herr_t ret_value=SUCCEED; /* Return value */ FUNC_ENTER_API(H5FDset_eoa, FAIL) - H5TRACE2("e", "xa", file, addr); + H5TRACE3("e", "xMta", file, type, addr); /* Check args */ if(!file || !file->cls) diff --git a/src/Makefile.in b/src/Makefile.in index 66dc381..fd49c21 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -276,6 +276,7 @@ SIZE_T = @SIZE_T@ STATIC_SHARED = @STATIC_SHARED@ STRIP = @STRIP@ TESTPARALLEL = @TESTPARALLEL@ +TIME = @TIME@ TR = @TR@ TRACE_API = @TRACE_API@ USE_FILTER_DEFLATE = @USE_FILTER_DEFLATE@ @@ -339,7 +340,6 @@ target_alias = @target_alias@ # Shell commands used in Makefiles RM = rm -f CP = cp -TIME = time # Some machines need a command to run executables; this is that command # so that our tests will run. |