]> git.ipfire.org Git - thirdparty/git.git/commitdiff
path.c: delete an extra space
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Sat, 22 Aug 2015 00:39:58 +0000 (07:39 +0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 7 Sep 2015 16:19:36 +0000 (09:19 -0700)
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
path.c

diff --git a/path.c b/path.c
index 95acbafa6883b4418f19a208cb9889f5642f3925..a536ee329fd63c1e3ab4336d0a1fe019af94cb91 100644 (file)
--- a/path.c
+++ b/path.c
@@ -431,7 +431,7 @@ const char *enter_repo(const char *path, int strict)
                }
                if (!suffix[i])
                        return NULL;
-               gitfile = read_gitfile(used_path) ;
+               gitfile = read_gitfile(used_path);
                if (gitfile)
                        strcpy(used_path, gitfile);
                if (chdir(used_path))