aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-05-09 21:51:15 +0000
committervapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-05-09 21:51:15 +0000
commit3e95581be58688fc1744fbe8201d1d7eec9cec63 (patch)
tree5a85c1ec56400b9a75fbe29d09a1c47da69adb0a
parent50f53350262ffe01e9f974f6358478a3ebc9039e (diff)
downloadbusybox-w32-3e95581be58688fc1744fbe8201d1d7eec9cec63.tar.gz
busybox-w32-3e95581be58688fc1744fbe8201d1d7eec9cec63.tar.bz2
busybox-w32-3e95581be58688fc1744fbe8201d1d7eec9cec63.zip
syntax/whitespace touchup
git-svn-id: svn://busybox.net/trunk/busybox@10273 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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}