summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2013-12-08 05:56:56 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-12-09 21:19:56 (GMT)
commite46c92e4ef75a74e210dcd517b04d7ea4b6e17ba (patch)
tree21925c8f6f694ecfe83b1c5d2388d6e48ced46aa
parent077f43447c4931dd2e7890f16e8728f7f7376b87 (diff)
downloadgit-e46c92e4ef75a74e210dcd517b04d7ea4b6e17ba.zip
git-e46c92e4ef75a74e210dcd517b04d7ea4b6e17ba.tar.gz
git-e46c92e4ef75a74e210dcd517b04d7ea4b6e17ba.tar.bz2
abspath: trivial style fix
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--abspath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/abspath.c b/abspath.c
index e390994..8b3385a 100644
--- a/abspath.c
+++ b/abspath.c
@@ -143,7 +143,7 @@ static const char *real_path_internal(const char *path, int die_on_error)
error_out:
free(last_elem);
if (*cwd && chdir(cwd))
- die_errno ("Could not change back to '%s'", cwd);
+ die_errno("Could not change back to '%s'", cwd);
return retval;
}