From 1084fad9535966a34ee5ae9982332850e7aa38e1 Mon Sep 17 00:00:00 2001 From: JINMEI Tatuya Date: Sat, 31 Oct 2015 18:47:03 +0900 Subject: [PATCH] [4027] use a single underscore version of uint8_t for consistency (and perhaps the double-underscore version is non-standard) --- src/lib/dhcp/tests/pkt4o6_unittest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/dhcp/tests/pkt4o6_unittest.cc b/src/lib/dhcp/tests/pkt4o6_unittest.cc index 4d178b1530..b6897b9c01 100644 --- a/src/lib/dhcp/tests/pkt4o6_unittest.cc +++ b/src/lib/dhcp/tests/pkt4o6_unittest.cc @@ -86,7 +86,7 @@ TEST_F(Pkt4o6Test, pack) { // Check the DHCPv4 message option content (Pkt4o6 class is not responsible // for making it valid, so we won't examine it) - const u_int8_t* cp = static_cast( + const uint8_t* cp = static_cast( pkt4o6.getPkt6()->getBuffer().getData()); EXPECT_EQ(0, cp[4]); EXPECT_EQ(D6O_DHCPV4_MSG, cp[5]); -- 2.47.2