diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-05 17:50:35 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-05 17:50:35 +0200 |
commit | 20077c1429915b2c223e4d179a033f2b1806872c (patch) | |
tree | 76c89e23adc5bb529e310d9e25e7016f6d699645 /miscutils | |
parent | 9cf89cdf84fb20154088145980b676d2b28fc55d (diff) | |
download | busybox-w32-20077c1429915b2c223e4d179a033f2b1806872c.tar.gz busybox-w32-20077c1429915b2c223e4d179a033f2b1806872c.tar.bz2 busybox-w32-20077c1429915b2c223e4d179a033f2b1806872c.zip |
libbb: make trim() return pointer to terminating NUL
function old new delta
trim 80 90 +10
angle_address 56 50 -6
sysctl_main 282 273 -9
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/3 up/down: +10/-15) Total: -5 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/lsscsi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/miscutils/lsscsi.c b/miscutils/lsscsi.c index b69ff1eef..c86630e31 100644 --- a/miscutils/lsscsi.c +++ b/miscutils/lsscsi.c | |||
@@ -37,9 +37,8 @@ static char *get_line(const char *filename, char *buf, unsigned *bufsize_p) | |||
37 | if (sz < 0) | 37 | if (sz < 0) |
38 | sz = 0; | 38 | sz = 0; |
39 | buf[sz] = '\0'; | 39 | buf[sz] = '\0'; |
40 | trim(buf); | ||
41 | 40 | ||
42 | sz = strlen(buf) + 1; | 41 | sz = (trim(buf) - buf) + 1; |
43 | bufsize -= sz; | 42 | bufsize -= sz; |
44 | buf += sz; | 43 | buf += sz; |
45 | buf[0] = '\0'; | 44 | buf[0] = '\0'; |