BIND 10 trac1313, updated. 6d197660434d715c4e57c6acf792ffdb0528c147 [1313] 2 extra spaces added.
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Oct 20 13:09:35 UTC 2011
The branch, trac1313 has been updated
via 6d197660434d715c4e57c6acf792ffdb0528c147 (commit)
from d8ac168592885baab953cbe6e416afc6b72d9e7d (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 6d197660434d715c4e57c6acf792ffdb0528c147
Author: Tomek Mrugalski <tomasz at isc.org>
Date: Thu Oct 20 15:09:13 2011 +0200
[1313] 2 extra spaces added.
-----------------------------------------------------------------------
Summary of changes:
src/lib/util/tests/io_utilities_unittest.cc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/util/tests/io_utilities_unittest.cc b/src/lib/util/tests/io_utilities_unittest.cc
index 3d161c0..4293c7e 100644
--- a/src/lib/util/tests/io_utilities_unittest.cc
+++ b/src/lib/util/tests/io_utilities_unittest.cc
@@ -89,7 +89,7 @@ TEST(asioutil, readUint32) {
// the memory alignment. That' why we need to repeat
// it 4 times.
for (int offset=0; offset < 4; offset++) {
- for (int i=0; i< sizeof(test32)/sizeof(uint32_t); i++) {
+ for (int i=0; i < sizeof(test32)/sizeof(uint32_t); i++) {
uint32_t tmp = htonl(test32[i]);
memcpy(&data[offset], &tmp, sizeof(uint32_t));
@@ -106,7 +106,7 @@ TEST(asioutil, writeUint32) {
// the memory alignment. That's why we need to repeat
// it 4 times.
for (int offset=0; offset < 4; offset++) {
- for (int i=0; i< sizeof(test32)/sizeof(uint32_t); i++) {
+ for (int i=0; i < sizeof(test32)/sizeof(uint32_t); i++) {
uint8_t* ptr = writeUint32(test32[i], &data[offset]);
EXPECT_EQ(&data[offset]+sizeof(uint32_t), ptr);
More information about the bind10-changes
mailing list