From: Vadim Kochan <[email protected]> Convert int -> bool as parameter.
Signed-off-by: Vadim Kochan <[email protected]> --- flowtop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flowtop.c b/flowtop.c index b094c44..bff06ec 100644 --- a/flowtop.c +++ b/flowtop.c @@ -431,7 +431,7 @@ static void walk_processes(struct flow_entry *n) closedir(dir); } -static int get_port_inode(uint16_t port, int proto, int is_ip6) +static int get_port_inode(uint16_t port, int proto, bool is_ip6) { int ret = -ENOENT; char path[128], buff[1024]; -- 2.4.2 -- You received this message because you are subscribed to the Google Groups "netsniff-ng" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
