From 58026f72a17b316f1b9756400f0ee9e9f519f877 Mon Sep 17 00:00:00 2001
From: Guus Sliepen <guus@tinc-vpn.org>
Date: Thu, 6 Dec 2012 16:57:57 +0100
Subject: [PATCH] Fix display of cumulative packet counters.

---
 doc/tincctl.8.in | 2 +-
 src/top.c        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/tincctl.8.in b/doc/tincctl.8.in
index 8fdd2727..f6b5010f 100644
--- a/doc/tincctl.8.in
+++ b/doc/tincctl.8.in
@@ -206,7 +206,7 @@ Fractional seconds are honored.
 Intervals lower than 0.1 seconds are not allowed.
 .It Ic c
 Toggle between displaying current traffic rates (in packets and bytes per second)
-and cummulative traffic (total packets and bytes since the tinc daemon started).
+and cumulative traffic (total packets and bytes since the tinc daemon started).
 .It Ic n
 Sort the list of nodes by name.
 .It Ic i
diff --git a/src/top.c b/src/top.c
index 8cd82be3..28ab56f4 100644
--- a/src/top.c
+++ b/src/top.c
@@ -229,7 +229,7 @@ static void redraw(void) {
 			attrset(A_DIM);
 
 		if(cumulative)
-			mvprintw(row, 0, "%-16s %10"PRIu64" %10.0f %10"PRIu64" %10.0f",
+			mvprintw(row, 0, "%-16s %10.0f %10.0f %10.0f %10.0f",
 					node->name, node->in_packets * pscale, node->in_bytes * bscale, node->out_packets * pscale, node->out_bytes * bscale);
 		else
 			mvprintw(row, 0, "%-16s %10.0f %10.0f %10.0f %10.0f",
-- 
2.39.5