]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1313] 2 extra spaces added.
authorTomek Mrugalski <tomasz@isc.org>
Thu, 20 Oct 2011 13:09:13 +0000 (15:09 +0200)
committerTomek Mrugalski <tomasz@isc.org>
Thu, 20 Oct 2011 13:09:13 +0000 (15:09 +0200)
src/lib/util/tests/io_utilities_unittest.cc

index 3d161c08399c249a9e72c1ea0f7752c26aa722d6..4293c7efcb8d219a10b36f5d967b8c4a0853e447 100644 (file)
@@ -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);