Skip to content

Commit f6f2332

Browse files
committed
update type specifiers to match type
1 parent 3a6b24c commit f6f2332

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/net/integration/bufstore/service.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ void Service::start(const std::string&)
7070
"Bufcount is now %u", BUFFER_CNT - 1);
7171

7272
// Chain
73-
for (int i = 0; i < TOTAL_BUFFERS-1; i++){
73+
for (size_t i = 0; i < TOTAL_BUFFERS-1; i++){
7474
auto chained_packet = create_packet(bufstore);
7575
packet->chain(std::move(chained_packet));
7676
}
@@ -87,7 +87,7 @@ void Service::start(const std::string&)
8787
tail = 0;
8888
packet = 0;
8989
CHECK(bufstore.available() == TOTAL_BUFFERS,
90-
"Bufcount is now %u / %u", bufstore.available(), TOTAL_BUFFERS);
90+
"Bufcount is now %zu / %u", bufstore.available(), TOTAL_BUFFERS);
9191
//assert(bufstore.available() == TOTAL_BUFFERS);
9292
INFO("Tests","SUCCESS");
9393
}

0 commit comments

Comments
 (0)