diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2012-02-13 15:31:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2012-02-13 15:31:35 (GMT) |
commit | a056968dbd636cf6c5bda77603d8742c7a4a9bd0 (patch) | |
tree | 2da94a2a92dbc2b56165447aead275cb661980e9 /test/h5test.h | |
parent | a7d4397b79916285889a63032e58eda314f828dc (diff) | |
download | hdf5-a056968dbd636cf6c5bda77603d8742c7a4a9bd0.zip hdf5-a056968dbd636cf6c5bda77603d8742c7a4a9bd0.tar.gz hdf5-a056968dbd636cf6c5bda77603d8742c7a4a9bd0.tar.bz2 |
[svn-r21934] Description:
Remove some leftover uses of the __FUNCTION__ macro, replacing them with
FUNC macro, as used everywhere else.
Tested on:
Mac OSX/64 10.7.3 (amazon) w/debug, production & parallel
(too minor to require h5committest)
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 2efdead..dd38546 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -87,7 +87,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() printf (" at %s:%d in %s()...\n", \ - __FILE__, __LINE__, __FUNCTION__); + __FILE__, __LINE__, FUNC); /* * The name of the test is printed by saying TESTING("something") which will |