diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2013-12-07 23:56:56 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-12-09 13:19:56 -0800 |
commit | e46c92e4ef75a74e210dcd517b04d7ea4b6e17ba (patch) | |
tree | 21925c8f6f694ecfe83b1c5d2388d6e48ced46aa /abspath.c | |
parent | 077f43447c4931dd2e7890f16e8728f7f7376b87 (diff) | |
download | git-e46c92e4ef75a74e210dcd517b04d7ea4b6e17ba.tar.gz |
abspath: trivial style fix
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'abspath.c')
-rw-r--r-- | abspath.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |