BIND 10 master, updated. 6f83737a9b9deaacd5ce0799cbda9e18fdb81c4b [master] added redundant 'const' in a function declaration to help SunStudio.
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Feb 6 18:12:10 UTC 2013
The branch, master has been updated
via 6f83737a9b9deaacd5ce0799cbda9e18fdb81c4b (commit)
from fbf11f41c327130fbdb39fcf64daa16f278eb197 (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 6f83737a9b9deaacd5ce0799cbda9e18fdb81c4b
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Wed Feb 6 18:10:05 2013 +0000
[master] added redundant 'const' in a function declaration to help SunStudio.
It insists signature match between declarations and definitions even with such
unnecessary qualifiers, and fails to link due to a false-positive
"undefined symbol" at the link time.
-----------------------------------------------------------------------
Summary of changes:
src/lib/util/unittests/fork.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/util/unittests/fork.h b/src/lib/util/unittests/fork.h
index d5623a7..6b9e749 100644
--- a/src/lib/util/unittests/fork.h
+++ b/src/lib/util/unittests/fork.h
@@ -40,10 +40,10 @@ bool
process_ok(pid_t process);
pid_t
-provide_input(int *read_pipe, const void *input, const size_t length);
+provide_input(int* read_pipe, const void* input, const size_t length);
pid_t
-check_output(int *write_pipe, const void *output, const size_t length);
+check_output(int* write_pipe, const void* const output, const size_t length);
} // End of the namespace
}
More information about the bind10-changes
mailing list