diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-30 13:38:19 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-30 13:38:19 +0000 |
commit | 214744dba19a593cf7b76a2623be520272f06a71 (patch) | |
tree | 0b0e6370689dbd168d974fe3aa555f547fde3ef3 /networking | |
parent | a8e27609249b8516c9f9d46606f73ab0c9f94d58 (diff) |
- fix paste'o which i overlooked when applying dalias' fmt stuff.
Diffstat (limited to 'networking')
-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) ptr->stats.tx_packets, ptr->stats.tx_errors, ptr->stats.tx_dropped, ptr->stats.tx_fifo_errors, ptr->stats.tx_carrier_errors); - printf(" collisions:%lu "), ptr->stats.collisions; + printf(" collisions:%lu ", ptr->stats.collisions); if (can_compress) printf("compressed:%lu ", ptr->stats.tx_compressed); if (ptr->tx_queue_len != -1) |