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 /libbb | |
parent | a36986bb80289c1cd8d15a557e49207c9a42946b (diff) | |
download | busybox-bf7f103ffb6e2644e9c063cba723e25635c14a52.tar.gz |
whitespace fix
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-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) buf = xmalloc_realpath(path); if (buf) { unsigned len = strlen(buf); - buf = xrealloc(buf, len + strlen(last_slash) + 2); + buf = xrealloc(buf, len + strlen(last_slash) + 2); buf[len++] = '/'; strcpy(buf + len, last_slash); } |