diff options
author | Alexander Potashev <aspotashev@gmail.com> | 2009-01-04 21:38:41 +0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-01-05 13:01:01 -0800 |
commit | d75307084da5f89329de190bb9b4a3196cec1d0e (patch) | |
tree | 74731a248640431379ceba54fa4e826b85d22eaa /builtin-init-db.c | |
parent | bash: add '--merge' to 'git reset' (diff) | |
download | tgif-d75307084da5f89329de190bb9b4a3196cec1d0e.tar.xz |
remove trailing LF in die() messages
LF at the end of format strings given to die() is redundant because
die already adds one on its own.
Signed-off-by: Alexander Potashev <aspotashev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-init-db.c')
-rw-r--r-- | builtin-init-db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-init-db.c b/builtin-init-db.c index d30c3fe2ca..ee3911f8ee 100644 --- a/builtin-init-db.c +++ b/builtin-init-db.c @@ -29,7 +29,7 @@ static void safe_create_dir(const char *dir, int share) } } else if (share && adjust_shared_perm(dir)) - die("Could not make %s writable by group\n", dir); + die("Could not make %s writable by group", dir); } static void copy_templates_1(char *path, int baselen, |