aboutsummaryrefslogtreecommitdiff
path: root/libbb/concat_path_file.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-05-09 21:51:15 +0000
committerMike Frysinger <vapier@gentoo.org>2005-05-09 21:51:15 +0000
commit9dc93ac5612a5439d1be71a0224817f509141b81 (patch)
tree5a85c1ec56400b9a75fbe29d09a1c47da69adb0a /libbb/concat_path_file.c
parent540d3f60f378ed26962501c33b335623fe5fb0fa (diff)
downloadbusybox-9dc93ac5612a5439d1be71a0224817f509141b81.tar.gz
syntax/whitespace touchup
Diffstat (limited to 'libbb/concat_path_file.c')
-rw-r--r--libbb/concat_path_file.c4
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;
}