diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2011-01-24 10:54:09 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2011-01-24 10:54:09 +0000 |
commit | 7ff67a2025478ef67518f57d14c9d16720a60f6e (patch) | |
tree | 706b50dac14957d8ec75585750e6893706905881 | |
parent | f1bfc8aba8434aea33cd9c2eff70d7bf52ca2b2e (diff) |
Notes
-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); |