abspath: trivial style fix
authorFelipe Contreras <felipe.contreras@gmail.com>
Sun, 8 Dec 2013 05:56:56 +0000 (23:56 -0600)
committerJunio C Hamano <gitster@pobox.com>
Mon, 9 Dec 2013 21:19:56 +0000 (13:19 -0800)
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
abspath.c
index e390994abff32054452e878484e79c249474389f..8b3385a77749108b29d0a25042a13a174ddbc2e4 100644 (file)
--- 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;
 }