summaryrefslogtreecommitdiff
path: root/git.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2005-12-22 18:14:31 -0800
committerLibravatar Junio C Hamano <junkio@cox.net>2005-12-22 18:14:31 -0800
commitc63da8d8e8c5b5078e59af15c1a41ff98ad61d59 (patch)
tree26958529f1ffcf1a257fe602c1d49664c46d8b64 /git.c
parentGIT 1.0.0b (diff)
parentsha1_to_hex: properly terminate the SHA1 (diff)
downloadtgif-c63da8d8e8c5b5078e59af15c1a41ff98ad61d59.tar.xz
GIT 1.0.3
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git.c')
-rw-r--r--git.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/git.c b/git.c
index 0fd95bf751..e795ddb810 100644
--- a/git.c
+++ b/git.c
@@ -278,7 +278,7 @@ int main(int argc, char **argv, char **envp)
if (*exec_path != '/') {
if (!getcwd(git_command, sizeof(git_command))) {
fprintf(stderr,
- "git: cannot determine current directory");
+ "git: cannot determine current directory\n");
exit(1);
}
len = strlen(git_command);