summaryrefslogtreecommitdiffstats
path: root/src/H5.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-08-19 14:44:45 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-08-19 14:44:45 (GMT)
commit9c020d5bd352410e51e9a8497f94f2198737e774 (patch)
treede364dc6b7513bfd5bd56e63327ce8cf6146386c /src/H5.c
parentc6ed9cbbae2ab01129261e3fcfa5b5dc927976ea (diff)
downloadhdf5-9c020d5bd352410e51e9a8497f94f2198737e774.zip
hdf5-9c020d5bd352410e51e9a8497f94f2198737e774.tar.gz
hdf5-9c020d5bd352410e51e9a8497f94f2198737e774.tar.bz2
[svn-r7384] Purpose:
Code cleanup Description: More linting... Platforms tested: FreeBSD 4.8 (sleipnir) too minor to need h5committest
Diffstat (limited to 'src/H5.c')
-rw-r--r--src/H5.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5.c b/src/H5.c
index 90d402b..9fa3186 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -749,6 +749,7 @@ H5close(void)
*
*-------------------------------------------------------------------------
*/
+/* ARGSUSED */
int
HDsnprintf(char *buf, size_t UNUSED size, const char *fmt, ...)
{
@@ -759,7 +760,7 @@ HDsnprintf(char *buf, size_t UNUSED size, const char *fmt, ...)
n = HDvsprintf(buf, fmt, ap);
va_end(ap);
return n;
-} /*lint !e715 */
+}
#endif /* H5_HAVE_SNPRINTF */
@@ -788,11 +789,12 @@ HDsnprintf(char *buf, size_t UNUSED size, const char *fmt, ...)
*
*-------------------------------------------------------------------------
*/
+/* ARGSUSED */
int
HDvsnprintf(char *buf, size_t UNUSED size, const char *fmt, va_list ap)
{
return HDvsprintf(buf, fmt, ap);
-} /*lint !e715 */
+}
#endif /* H5_HAVE_VSNPRINTF */