diff options
-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) |