diff options
Diffstat (limited to 'busybox/libbb/concat_path_file.c')
-rw-r--r-- | busybox/libbb/concat_path_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/busybox/libbb/concat_path_file.c b/busybox/libbb/concat_path_file.c index 77c0545..00233ad 100644 --- a/busybox/libbb/concat_path_file.c +++ b/busybox/libbb/concat_path_file.c @@ -34,11 +34,11 @@ extern char *concat_path_file(const char *path, const char *filename) char *lc; if (!path) - path=""; + path = ""; lc = last_char_is(path, '/'); while (*filename == '/') filename++; - bb_xasprintf(&outbuf, "%s%s%s", path, (lc==NULL)? "/" : "", filename); + bb_xasprintf(&outbuf, "%s%s%s", path, (lc==NULL ? "/" : ""), filename); return outbuf; } |