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-w32-9dc93ac5612a5439d1be71a0224817f509141b81.tar.gz
busybox-w32-9dc93ac5612a5439d1be71a0224817f509141b81.tar.bz2
busybox-w32-9dc93ac5612a5439d1be71a0224817f509141b81.zip
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)
34 char *lc; 34 char *lc;
35 35
36 if (!path) 36 if (!path)
37 path=""; 37 path = "";
38 lc = last_char_is(path, '/'); 38 lc = last_char_is(path, '/');
39 while (*filename == '/') 39 while (*filename == '/')
40 filename++; 40 filename++;
41 bb_xasprintf(&outbuf, "%s%s%s", path, (lc==NULL)? "/" : "", filename); 41 bb_xasprintf(&outbuf, "%s%s%s", path, (lc==NULL ? "/" : ""), filename);
42 42
43 return outbuf; 43 return outbuf;
44} 44}