BIND 10 trac1639, updated. 53fe05a19d83b544b331eaa4b8c909afde1b82b8 [1639] some minor editorial fixes: () for return, indentation consistency
BIND 10 source code commits
bind10-changes at lists.isc.org
Tue Mar 20 18:03:04 UTC 2012
The branch, trac1639 has been updated
via 53fe05a19d83b544b331eaa4b8c909afde1b82b8 (commit)
from 7b011c0f5241fb59a90a6dd089d6e972ae73a0a1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 53fe05a19d83b544b331eaa4b8c909afde1b82b8
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Tue Mar 20 11:02:23 2012 -0700
[1639] some minor editorial fixes: () for return, indentation consistency
-----------------------------------------------------------------------
Summary of changes:
tests/tools/perfdhcp/perfdhcp.c | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
-----------------------------------------------------------------------
diff --git a/tests/tools/perfdhcp/perfdhcp.c b/tests/tools/perfdhcp/perfdhcp.c
index ac035a1..ba115cc 100644
--- a/tests/tools/perfdhcp/perfdhcp.c
+++ b/tests/tools/perfdhcp/perfdhcp.c
@@ -80,17 +80,17 @@ pselect (int nfds, fd_set *readfds, fd_set *writefds,
fd_set *exceptfds, const struct timespec *timeout,
const sigset_t *sigmask)
{
- struct timeval my_timeout;
+ struct timeval my_timeout;
- /* Our particular usage of pselect() doesn't use these fields. */
- assert(writefds == NULL);
- assert(exceptfds == NULL);
- assert(sigmask == NULL);
+ /* Our particular usage of pselect() doesn't use these fields. */
+ assert(writefds == NULL);
+ assert(exceptfds == NULL);
+ assert(sigmask == NULL);
- my_timeout.tv_sec = timeout->tv_sec;
- my_timeout.tv_usec = timeout->tv_nsec / 1000;
+ my_timeout.tv_sec = timeout->tv_sec;
+ my_timeout.tv_usec = timeout->tv_nsec / 1000;
- return select(nfds, readfds, writefds, exceptfds, &my_timeout);
+ return (select(nfds, readfds, writefds, exceptfds, &my_timeout));
}
#endif /* HAVE_PSELECT */
More information about the bind10-changes
mailing list