diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2010-07-16 21:35:35 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2010-07-16 21:35:35 (GMT) |
commit | dd5d27951f2ba156dc99cf5addaa2fb6e3cf345a (patch) | |
tree | 507ba1869bde61f7674475e8264a4f59bd6a162d /src/H5private.h | |
parent | c3340f256d12bdcd5a290ced8808a8606da95ba3 (diff) | |
download | hdf5-dd5d27951f2ba156dc99cf5addaa2fb6e3cf345a.zip hdf5-dd5d27951f2ba156dc99cf5addaa2fb6e3cf345a.tar.gz hdf5-dd5d27951f2ba156dc99cf5addaa2fb6e3cf345a.tar.bz2 |
[svn-r19082] Made ';' after H5_PUSH_FUNC consistent throughout H5private.h to fix compile failure with Sun 5.10 C compiler.
Added Sun 5.10 compilers to RELEASE.txt.
Tested on linew.
Tested on amani, heiwa, and jam with h5committest.
Diffstat (limited to 'src/H5private.h')
-rw-r--r-- | src/H5private.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5private.h b/src/H5private.h index f121875..f772dae 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -1700,7 +1700,7 @@ extern hbool_t H5_libinit_g; /* Has the library been initialized? */ /* Include required function stack header */ #include "H5CSprivate.h" -#define H5_PUSH_FUNC(func_name) H5CS_push(#func_name) +#define H5_PUSH_FUNC(func_name) H5CS_push(#func_name); #define H5_POP_FUNC H5CS_pop(); #else /* H5_HAVE_CODESTACK */ #define H5_PUSH_FUNC(func_name) /* void */ @@ -1827,7 +1827,7 @@ static herr_t H5_INTERFACE_INIT_FUNC(void); */ #define FUNC_ENTER_API_NOINIT(func_name) {{ \ FUNC_ENTER_API_COMMON(func_name) \ - H5_PUSH_FUNC(func_name); \ + H5_PUSH_FUNC(func_name) \ BEGIN_MPE_LOG(func_name); \ { @@ -1881,7 +1881,7 @@ static herr_t H5_INTERFACE_INIT_FUNC(void); */ #define FUNC_ENTER_NOAPI_NOINIT(func_name) { \ FUNC_ENTER_COMMON(func_name, !H5_IS_API(#func_name)); \ - H5_PUSH_FUNC(func_name); \ + H5_PUSH_FUNC(func_name) \ { /* @@ -1912,7 +1912,7 @@ static herr_t H5_INTERFACE_INIT_FUNC(void); */ #define FUNC_ENTER_NOAPI_NOINIT_NOFUNC(func_name) { \ FUNC_ENTER_COMMON_NOFUNC(func_name,!H5_IS_API(#func_name)); \ - H5_PUSH_FUNC(func_name); \ + H5_PUSH_FUNC(func_name) \ { /* |