diff options
-rw-r--r-- | usr.bin/netstat/netisr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/netstat/netisr.c b/usr.bin/netstat/netisr.c index 733a847b828d..58f2902c9b3a 100644 --- a/usr.bin/netstat/netisr.c +++ b/usr.bin/netstat/netisr.c @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2010 Juniper Networks, Inc. + * Copyright (c) 2010-2011 Juniper Networks, Inc. * All rights reserved. * * This software was developed by Robert N. M. Watson under contract @@ -445,11 +445,11 @@ netisr_print_workstream(struct sysctl_netisr_workstream *snwsp) if (snwp->snw_wsid != snwsp->snws_wsid) continue; if (first) { - printf("%4u", snwsp->snws_wsid); - printf(" %3u", snwsp->snws_cpu); + printf("%4u ", snwsp->snws_wsid); + printf("%3u ", snwsp->snws_cpu); first = 0; } else - printf("%4s %3s", "", ""); + printf("%4s %3s ", "", ""); printf("%2s", ""); printf("%-6s", netisr_proto2name(snwp->snw_proto)); printf(" %5u", snwp->snw_len); |