From 3e95581be58688fc1744fbe8201d1d7eec9cec63 Mon Sep 17 00:00:00 2001 From: vapier Date: Mon, 9 May 2005 21:51:15 +0000 Subject: syntax/whitespace touchup git-svn-id: svn://busybox.net/trunk/busybox@10273 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- libbb/concat_path_file.c | 4 ++-- 1 file 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; } -- cgit v1.2.3-55-g6feb