2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-05 00:55:24 +00:00

Check return values or cast them to (void), as required by the coding

standards; add exceptions to the coding standards for cases where this is
not desirable
This commit is contained in:
Andreas Gustafsson
2001-11-30 01:59:49 +00:00
parent 9ac8796f16
commit 1f1d36a87b
61 changed files with 420 additions and 409 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: gen-unix.h,v 1.12 2001/01/09 21:50:51 bwelling Exp $ */
/* $Id: gen-unix.h,v 1.13 2001/11/30 01:59:08 gson Exp $ */
/*
* This file is responsible for defining two operations that are not
@@ -82,7 +82,7 @@ next_file(isc_dir_t *dir) {
static void
end_directory(isc_dir_t *dir) {
if (dir->handle != NULL)
closedir(dir->handle);
(void)closedir(dir->handle);
dir->handle = NULL;
}