summaryrefslogtreecommitdiffstats
path: root/src/hdf5.lnt
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-07-10 19:48:30 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-07-10 19:48:30 (GMT)
commit70d40b297e5a5c7518a159b69de7113fd3f625db (patch)
treef8c186f73a4c23810e23ba194942b3514e8dd10e /src/hdf5.lnt
parentdde2ff6776e4e32ea00cd450246a43e94897dbb7 (diff)
downloadhdf5-70d40b297e5a5c7518a159b69de7113fd3f625db.zip
hdf5-70d40b297e5a5c7518a159b69de7113fd3f625db.tar.gz
hdf5-70d40b297e5a5c7518a159b69de7113fd3f625db.tar.bz2
[svn-r7205] Purpose:
Code cleanup Description: Further code cleanups suggested by lint tool. Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
Diffstat (limited to 'src/hdf5.lnt')
-rwxr-xr-xsrc/hdf5.lnt14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/hdf5.lnt b/src/hdf5.lnt
index feca85c..fcb36d5 100755
--- a/src/hdf5.lnt
+++ b/src/hdf5.lnt
@@ -1,5 +1,7 @@
-// Turn off warnings about not using the return value from these functions
--esym(534, HDfprintf, H5E_clear, H5E_push, H5I_clear_group, H5I_destroy_group)
+// Turn off warnings about not using the return value from these functions:
+-esym(534, HDfprintf, H5E_clear, H5E_push)
+-esym(534, H5FL_arr_free, H5FL_blk_free, H5FL_reg_free)
+-esym(534, H5I_clear_group, H5I_destroy_group)
-esym(534, H5MM_xfree)
// Suppress message about our use of 'goto' in our error macros
@@ -23,6 +25,12 @@
// Suppress message about "Shift right of signed quantity" in H5I_GRP macro
-emacro(702,H5I_GRP)
+// Suppress message about "Constant expression evaluates to 0 in expression" in H5FL_ARR* macros
+-emacro(778,H5FL_ARR_DEFINE_COMMON)
+
+// Suppress message about "Union initialization" in H5FL_ARR* macros
+-emacro(708,H5FL_ARR_DEFINE_COMMON)
+
// Suppress message about "enum constant not used within defaulted switch"
-e788
@@ -39,4 +47,6 @@
/* So far, the following files have been linted with these options:
H5.c
H5A.c
+ H5AC.c
+ H5B.c
*/