diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-19 14:44:45 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-19 14:44:45 (GMT) |
commit | 9c020d5bd352410e51e9a8497f94f2198737e774 (patch) | |
tree | de364dc6b7513bfd5bd56e63327ce8cf6146386c /src/H5.c | |
parent | c6ed9cbbae2ab01129261e3fcfa5b5dc927976ea (diff) | |
download | hdf5-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.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 */ |