aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-05-30 00:29:55 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-05-30 00:29:55 +0000
commit4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b (patch)
tree7dfc507c1a7d14fb61d4fd0c68481e01b4a36ba1 /libbb
parent4ef7d3a2de3df27dde80a64987202f10aebfe925 (diff)
downloadbusybox-w32-4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b.tar.gz
busybox-w32-4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b.tar.bz2
busybox-w32-4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b.zip
whitespace fixes
Diffstat (limited to 'libbb')
-rw-r--r--libbb/match_fstype.c2
-rw-r--r--libbb/udp_io.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libbb/match_fstype.c b/libbb/match_fstype.c
index 7698ceb08..bd4dbb064 100644
--- a/libbb/match_fstype.c
+++ b/libbb/match_fstype.c
@@ -19,7 +19,7 @@ int match_fstype(const struct mntent *mt, const char *fstype)
19 19
20 if (!mt) 20 if (!mt)
21 return -1; 21 return -1;
22 22
23 if (!fstype) 23 if (!fstype)
24 return 0; 24 return 0;
25 25
diff --git a/libbb/udp_io.c b/libbb/udp_io.c
index d834a237b..7e48d32f3 100644
--- a/libbb/udp_io.c
+++ b/libbb/udp_io.c
@@ -51,7 +51,7 @@ send_to_from(int fd, void *buf, size_t len, int flags,
51 /* ANY local address */ 51 /* ANY local address */
52 return sendto(fd, buf, len, flags, to, tolen); 52 return sendto(fd, buf, len, flags, to, tolen);
53 } 53 }
54 54
55 /* man recvmsg and man cmsg is needed to make sense of code below */ 55 /* man recvmsg and man cmsg is needed to make sense of code below */
56 56
57 iov[0].iov_base = buf; 57 iov[0].iov_base = buf;