diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-30 13:38:19 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-03-30 13:38:19 +0000 |
commit | 0c55c39e2e134906b03f7147b5436dc8a7d1ea30 (patch) | |
tree | 0b0e6370689dbd168d974fe3aa555f547fde3ef3 | |
parent | 047445af80a178c955c938c78f538d2b98c7ab6d (diff) | |
download | busybox-w32-0c55c39e2e134906b03f7147b5436dc8a7d1ea30.tar.gz busybox-w32-0c55c39e2e134906b03f7147b5436dc8a7d1ea30.tar.bz2 busybox-w32-0c55c39e2e134906b03f7147b5436dc8a7d1ea30.zip |
- fix paste'o which i overlooked when applying dalias' fmt stuff.
git-svn-id: svn://busybox.net/trunk/busybox@14705 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | networking/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/interface.c b/networking/interface.c index e1af2bf19..5c1ee92cd 100644 --- a/networking/interface.c +++ b/networking/interface.c | |||
@@ -2001,7 +2001,7 @@ static void ife_print(struct interface *ptr) | |||
2001 | ptr->stats.tx_packets, ptr->stats.tx_errors, | 2001 | ptr->stats.tx_packets, ptr->stats.tx_errors, |
2002 | ptr->stats.tx_dropped, ptr->stats.tx_fifo_errors, | 2002 | ptr->stats.tx_dropped, ptr->stats.tx_fifo_errors, |
2003 | ptr->stats.tx_carrier_errors); | 2003 | ptr->stats.tx_carrier_errors); |
2004 | printf(" collisions:%lu "), ptr->stats.collisions; | 2004 | printf(" collisions:%lu ", ptr->stats.collisions); |
2005 | if (can_compress) | 2005 | if (can_compress) |
2006 | printf("compressed:%lu ", ptr->stats.tx_compressed); | 2006 | printf("compressed:%lu ", ptr->stats.tx_compressed); |
2007 | if (ptr->tx_queue_len != -1) | 2007 | if (ptr->tx_queue_len != -1) |