From 043b0faaaa1556f8d5218f2072492e1a03e2d1d9 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 31 Dec 2009 19:54:16 +0000 Subject: netstat: fix %*s handling -- the field takes an int, not a size_t --- netstat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'netstat.c') diff --git a/netstat.c b/netstat.c index b711990..49c268a 100644 --- a/netstat.c +++ b/netstat.c @@ -6,7 +6,7 @@ * NET-3 Networking Distribution for the LINUX operating * system. * - * Version: $Id: netstat.c,v 1.67 2009/09/06 23:05:28 vapier Exp $ + * Version: $Id: netstat.c,v 1.68 2009/12/31 19:54:16 vapier Exp $ * * Authors: Fred Baumgarten, * Fred N. van Kempen, @@ -984,7 +984,7 @@ static void tcp_do_one(int lnr, const char *line, const char *prot) break; } printf("%-4s %6ld %6ld %-*s %-*s %-11s", - prot, rxq, txq, netmax(23,strlen(local_addr)), local_addr, netmax(23,strlen(rem_addr)), rem_addr, _(tcp_state[state])); + prot, rxq, txq, (int)netmax(23,strlen(local_addr)), local_addr, (int)netmax(23,strlen(rem_addr)), rem_addr, _(tcp_state[state])); finish_this_one(uid,inode,timers); } -- cgit v1.2.3