From: Felipe Contreras Date: Sun, 8 Dec 2013 05:56:56 +0000 (-0600) Subject: abspath: trivial style fix X-Git-Tag: v1.9-rc0~67^2~3 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/e46c92e4ef75a74e210dcd517b04d7ea4b6e17ba abspath: trivial style fix Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- diff --git a/abspath.c b/abspath.c index e390994abf..8b3385a777 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; }