diff options
author | Eric Andersen | 2002-09-17 06:36:56 +0000 |
---|---|---|
committer | Eric Andersen | 2002-09-17 06:36:56 +0000 |
commit | 7365c58783bdc628889d26a30924e5c48660ac7c (patch) | |
tree | 61ee9d8950532e1816aaec17322022f3c8388026 | |
parent | bdff6a4c59a08b860944dbdd58199f9efd67daef (diff) | |
download | busybox-7365c58783bdc628889d26a30924e5c48660ac7c.zip busybox-7365c58783bdc628889d26a30924e5c48660ac7c.tar.gz |
Use "MiB" not "Mb"
-Erik
-rw-r--r-- | libbb/interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/interface.c b/libbb/interface.c index 04abda3..b7353e5 100644 --- a/libbb/interface.c +++ b/libbb/interface.c @@ -15,7 +15,7 @@ * that either displays or sets the characteristics of * one or more of the system's networking interfaces. * - * Version: $Id: interface.c,v 1.9 2002/08/22 19:35:36 bug1 Exp $ + * Version: $Id: interface.c,v 1.10 2002/09/17 06:36:02 andersen Exp $ * * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> * and others. Copyright 1993 MicroWalt Corporation @@ -1739,7 +1739,7 @@ static void print_bytes_scaled(unsigned long long ull, const char *end) } } - printf("X bytes:%Lu (%Lu.%lu %sb)%s", ull, int_part, frac_part, ext, end); + printf("X bytes:%Lu (%Lu.%lu %siB)%s", ull, int_part, frac_part, ext, end); } static void ife_print(struct interface *ptr) |