diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-08 21:05:27 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-07-08 21:05:27 (GMT) |
commit | f2048a23790abf49ade6fea0acca0b2b27e4f0ff (patch) | |
tree | 4a1b0eddb2430ad7053573e44c30af675f8b85b5 /src/H5private.h | |
parent | 720dcef073b2b6622b0a6fc3460c5d512880a6d5 (diff) | |
download | hdf5-f2048a23790abf49ade6fea0acca0b2b27e4f0ff.zip hdf5-f2048a23790abf49ade6fea0acca0b2b27e4f0ff.tar.gz hdf5-f2048a23790abf49ade6fea0acca0b2b27e4f0ff.tar.bz2 |
[svn-r7184] Purpose:
Code cleanup
Description:
Clean up various warnings from lint
Platforms tested:
FreeBSD 4.8 (sleipnir)
no major changes requiring h5committest
Diffstat (limited to 'src/H5private.h')
-rw-r--r-- | src/H5private.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5private.h b/src/H5private.h index dacefd8..7a709ef 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -1216,7 +1216,7 @@ extern hbool_t H5_MPEinit_g; /* Has the MPE Library been initialized? */ H5_INIT_GLOBAL = TRUE; \ if (H5_init_library()<0) \ HGOTO_ERROR (H5E_FUNC, H5E_CANTINIT, err, \ - "library initialization failed"); \ + "library initialization failed") \ } \ \ /* Initialize this interface or bust */ \ @@ -1226,7 +1226,7 @@ extern hbool_t H5_MPEinit_g; /* Has the MPE Library been initialized? */ ((herr_t(*)(void))interface_init_func)()<0) { \ interface_initialize_g = 0; \ HGOTO_ERROR (H5E_FUNC, H5E_CANTINIT, err, \ - "interface initialization failed"); \ + "interface initialization failed") \ } \ } \ \ @@ -1243,7 +1243,7 @@ extern hbool_t H5_MPEinit_g; /* Has the MPE Library been initialized? */ ((herr_t(*)(void))interface_init_func)()<0) { \ interface_initialize_g = 0; \ HGOTO_ERROR (H5E_FUNC, H5E_CANTINIT, err, \ - "interface initialization failed"); \ + "interface initialization failed") \ } \ } \ \ |