diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-05-26 17:42:00 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-05-26 17:42:00 +0200 |
commit | bf7f103ffb6e2644e9c063cba723e25635c14a52 (patch) | |
tree | 01fecf54830cb58f67be147c6a296911aca5738a | |
parent | a36986bb80289c1cd8d15a557e49207c9a42946b (diff) | |
download | busybox-w32-bf7f103ffb6e2644e9c063cba723e25635c14a52.tar.gz busybox-w32-bf7f103ffb6e2644e9c063cba723e25635c14a52.tar.bz2 busybox-w32-bf7f103ffb6e2644e9c063cba723e25635c14a52.zip |
whitespace fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/xreadlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xreadlink.c b/libbb/xreadlink.c index 6315033bb..ead30e499 100644 --- a/libbb/xreadlink.c +++ b/libbb/xreadlink.c | |||
@@ -143,7 +143,7 @@ char* FAST_FUNC xmalloc_realpath_coreutils(const char *path) | |||
143 | buf = xmalloc_realpath(path); | 143 | buf = xmalloc_realpath(path); |
144 | if (buf) { | 144 | if (buf) { |
145 | unsigned len = strlen(buf); | 145 | unsigned len = strlen(buf); |
146 | buf = xrealloc(buf, len + strlen(last_slash) + 2); | 146 | buf = xrealloc(buf, len + strlen(last_slash) + 2); |
147 | buf[len++] = '/'; | 147 | buf[len++] = '/'; |
148 | strcpy(buf + len, last_slash); | 148 | strcpy(buf + len, last_slash); |
149 | } | 149 | } |