whitespace fix

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2018-05-26 17:42:00 +02:00
parent a36986bb80
commit bf7f103ffb

View File

@ -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);
}