aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-11-26 15:45:17 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-11-26 15:45:17 +0000
commitcf749bc10c9e7b38217e102d0d3e7044e5515b4f (patch)
treeaf6c1681e91a3e5c13bf3dce8aa798c07462468a /util-linux
parentc1660fea6da93f4f8aacf0a9a65c2880ac58209a (diff)
downloadbusybox-cf749bc10c9e7b38217e102d0d3e7044e5515b4f.tar.gz
small fixes:
fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc.
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/mdev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c
index c03dd6130..957316d52 100644
--- a/util-linux/mdev.c
+++ b/util-linux/mdev.c
@@ -73,7 +73,7 @@ static void make_device(char *path, int delete)
line++;
/* find end of this line */
- for(end=pos; end-conf<len && *end!='\n'; end++)
+ for (end=pos; end-conf<len && *end!='\n'; end++)
;
/* Three fields: regex, uid:gid, mode */
@@ -111,7 +111,7 @@ static void make_device(char *path, int delete)
char *s, *s2;
/* Find : */
- for(s=pos; s<end2 && *s!=':'; s++)
+ for (s=pos; s<end2 && *s!=':'; s++)
;
if (s == end2) break;