aboutsummaryrefslogtreecommitdiff
path: root/shell/msh.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-05-30 00:29:55 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-05-30 00:29:55 +0000
commit1be4cb859b3f084a18161e9b075560cbec2218e8 (patch)
tree7dfc507c1a7d14fb61d4fd0c68481e01b4a36ba1 /shell/msh.c
parente37f68fb738d1bd2f958f8767b6990a9f9c74a97 (diff)
downloadbusybox-w32-1be4cb859b3f084a18161e9b075560cbec2218e8.tar.gz
busybox-w32-1be4cb859b3f084a18161e9b075560cbec2218e8.tar.bz2
busybox-w32-1be4cb859b3f084a18161e9b075560cbec2218e8.zip
whitespace fixes
git-svn-id: svn://busybox.net/trunk/busybox@18703 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/msh.c')
-rw-r--r--shell/msh.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/msh.c b/shell/msh.c
index ac49af14c..d81a00122 100644
--- a/shell/msh.c
+++ b/shell/msh.c
@@ -58,10 +58,10 @@ static char *utoa_to_buf(unsigned n, char *buf, unsigned buflen)
58 for (i = 1000000000; i; i /= 10) { 58 for (i = 1000000000; i; i /= 10) {
59 res = n / i; 59 res = n / i;
60 if (res || out || i == 1) { 60 if (res || out || i == 1) {
61 if (!--buflen) break; 61 if (!--buflen) break;
62 out++; 62 out++;
63 n -= res*i; 63 n -= res*i;
64 *buf++ = '0' + res; 64 *buf++ = '0' + res;
65 } 65 }
66 } 66 }
67 } 67 }