From 0334843d9f0a73f613e1dd20e30e6f3333d12d62 Mon Sep 17 00:00:00 2001 From: dimitri staessens Date: Sat, 3 Dec 2016 14:50:45 +0100 Subject: ipcpd, tools: Fix compilation on 32 bit linux Fixes issues with uint64_t not corresponding with unsigned long in printf statements. Reorganises a calculation to reduce overflows. --- src/tools/operf/operf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tools/operf') diff --git a/src/tools/operf/operf.c b/src/tools/operf/operf.c index 808a8807..bc7ade3a 100644 --- a/src/tools/operf/operf.c +++ b/src/tools/operf/operf.c @@ -44,8 +44,8 @@ struct c { bool sleep; int duration; - uint64_t sent; - uint64_t rcvd; + unsigned long sent; + unsigned long rcvd; flow_set_t * flows; fqueue_t * fq; -- cgit v1.2.3