summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2019-03-25 22:19:52 +0000
committerAdam Ierymenko <adam.ierymenko@gmail.com>2019-03-25 22:19:52 +0000
commitd81549a7b1553f399e6effdf17746242b89d9222 (patch)
tree2f86ce9081d037ced0dd44b00b12179c24cba5d8 /service
parentd5ac8512e31af5ec9d02a7047dde50c9907c3c61 (diff)
downloadinfinitytier-d81549a7b1553f399e6effdf17746242b89d9222.tar.gz
infinitytier-d81549a7b1553f399e6effdf17746242b89d9222.zip
Various other fixes including removal of more mem*() issues and netlink fixes for AARCH64.
Diffstat (limited to 'service')
-rw-r--r--service/OneService.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/OneService.cpp b/service/OneService.cpp
index c499f83b..17f7debc 100644
--- a/service/OneService.cpp
+++ b/service/OneService.cpp
@@ -621,7 +621,7 @@ public:
_incomingPacketConcurrency = tmp;
}
}
- for(long t=0;t<_incomingPacketConcurrency;++t) {
+ for(unsigned long t=0;t<_incomingPacketConcurrency;++t) {
_incomingPacketThreads.push_back(std::thread([this]() {
OneServiceIncomingPacket *pkt = nullptr;
for(;;) {