diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2021-06-29 04:58:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-29 04:58:38 (GMT) |
commit | 734d317da9c759799c92ff47e05e3be7e3e969a9 (patch) | |
tree | f928e0c17e91b9a1124ee9e4b0217a1b4fe68b17 /test/h5test.h | |
parent | 5ddfbc2a736f7f4cc8b109ee3f3e53c4655dbec1 (diff) | |
download | hdf5-734d317da9c759799c92ff47e05e3be7e3e969a9.zip hdf5-734d317da9c759799c92ff47e05e3be7e3e969a9.tar.gz hdf5-734d317da9c759799c92ff47e05e3be7e3e969a9.tar.bz2 |
Removes obsolete equivalents of C99's __func__ (#800)
Diffstat (limited to 'test/h5test.h')
-rw-r--r-- | test/h5test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/h5test.h b/test/h5test.h index 89e30da..16fb33c 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -89,7 +89,7 @@ H5TEST_DLLVAR MPI_Info h5_io_info_g; /* MPI INFO object for IO */ /* * Print the current location on the standard output stream. */ -#define AT() HDprintf(" at %s:%d in %s()...\n", __FILE__, __LINE__, FUNC); +#define AT() HDprintf(" at %s:%d in %s()...\n", __FILE__, __LINE__, __func__); /* * The name of the test is printed by saying TESTING("something") which will |