diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-05-09 21:51:15 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-05-09 21:51:15 +0000 |
commit | 9dc93ac5612a5439d1be71a0224817f509141b81 (patch) | |
tree | 5a85c1ec56400b9a75fbe29d09a1c47da69adb0a /libbb/concat_path_file.c | |
parent | 540d3f60f378ed26962501c33b335623fe5fb0fa (diff) |
syntax/whitespace touchup
Diffstat (limited to 'libbb/concat_path_file.c')
-rw-r--r-- | libbb/concat_path_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/concat_path_file.c b/libbb/concat_path_file.c index 77c054530..00233ad9a 100644 --- a/libbb/concat_path_file.c +++ b/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; } |