aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-09-17 06:36:56 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-09-17 06:36:56 +0000
commitd093ec17858d3e43afb2874fc1b9077b88de32ec (patch)
tree61ee9d8950532e1816aaec17322022f3c8388026 /libbb
parent7790f7da8478ff749e0e96d8b8eb3b2d96949db5 (diff)
downloadbusybox-w32-d093ec17858d3e43afb2874fc1b9077b88de32ec.tar.gz
busybox-w32-d093ec17858d3e43afb2874fc1b9077b88de32ec.tar.bz2
busybox-w32-d093ec17858d3e43afb2874fc1b9077b88de32ec.zip
Use "MiB" not "Mb"
-Erik git-svn-id: svn://busybox.net/trunk/busybox@5528 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/interface.c b/libbb/interface.c
index 04abda39d..b7353e5ad 100644
--- a/libbb/interface.c
+++ b/libbb/interface.c
@@ -15,7 +15,7 @@
15 * that either displays or sets the characteristics of 15 * that either displays or sets the characteristics of
16 * one or more of the system's networking interfaces. 16 * one or more of the system's networking interfaces.
17 * 17 *
18 * Version: $Id: interface.c,v 1.9 2002/08/22 19:35:36 bug1 Exp $ 18 * Version: $Id: interface.c,v 1.10 2002/09/17 06:36:02 andersen Exp $
19 * 19 *
20 * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> 20 * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
21 * and others. Copyright 1993 MicroWalt Corporation 21 * and others. Copyright 1993 MicroWalt Corporation
@@ -1739,7 +1739,7 @@ static void print_bytes_scaled(unsigned long long ull, const char *end)
1739 } 1739 }
1740 } 1740 }
1741 1741
1742 printf("X bytes:%Lu (%Lu.%lu %sb)%s", ull, int_part, frac_part, ext, end); 1742 printf("X bytes:%Lu (%Lu.%lu %siB)%s", ull, int_part, frac_part, ext, end);
1743} 1743}
1744 1744
1745static void ife_print(struct interface *ptr) 1745static void ife_print(struct interface *ptr)