summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flowtop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/flowtop.c b/flowtop.c
index 20b3c25..b30b0bb 100644
--- a/flowtop.c
+++ b/flowtop.c
@@ -992,7 +992,7 @@ static void print_flow_peer_info(const struct flow_entry *n, enum flow_direction
tmp, sizeof(tmp) - 1));
}
-static void draw_flow_entry(WINDOW *scr, const struct flow_entry *n, int line)
+static void draw_flow_entry(const struct flow_entry *n)
{
char tmp[128];
@@ -1117,7 +1117,7 @@ static void draw_flows(WINDOW *screen, struct flow_list *fl,
if (--skip >= 0)
continue;
- draw_flow_entry(screen, n, line);
+ draw_flow_entry(n);
line += row_width;
}