diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-01-22 13:38:49 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-01-22 13:38:49 (GMT) |
commit | d363f95d6d7c8ac25ccf319e9d136fc5842b9474 (patch) | |
tree | c5ada4e5b0bf7ee0d69f1b0089d795c39f5dfeed | |
parent | c1df1b3ea446f6b0b7800361d61c60f5c6e40814 (diff) | |
download | hdf5-d363f95d6d7c8ac25ccf319e9d136fc5842b9474.zip hdf5-d363f95d6d7c8ac25ccf319e9d136fc5842b9474.tar.gz hdf5-d363f95d6d7c8ac25ccf319e9d136fc5842b9474.tar.bz2 |
[svn-r9858] Purpose:
Code cleanup
Description:
Clean up a few rements from the Pablo removal
Platforms tested:
None, very minor
-rw-r--r-- | src/H5private.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/H5private.h b/src/H5private.h index 742006c..fe4cbaa 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -1131,13 +1131,11 @@ static herr_t H5_INTERFACE_INIT_FUNC(void); #define FUNC_ENTER_COMMON_NOFUNC(func_name,asrt) \ - \ /* Check API status */ \ assert(asrt); \ \ /* Check function name */ \ - H5_CHECK_FUNCNAME(func_name); \ - \ + H5_CHECK_FUNCNAME(func_name); #define FUNC_ENTER_COMMON(func_name,asrt) \ static const char FUNC[]=#func_name; \ |