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-fetch.c | |
parent | e89e2ed7c225cf16cffbd9648895528e471e2fb8 (diff) | |
download | git-d75307084da5f89329de190bb9b4a3196cec1d0e.tar.gz |
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-fetch.c')
-rw-r--r-- | builtin-fetch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-fetch.c b/builtin-fetch.c index 7568163af2..de6f3074b1 100644 --- a/builtin-fetch.c +++ b/builtin-fetch.c @@ -607,7 +607,7 @@ static void set_option(const char *name, const char *value) { int r = transport_set_option(transport, name, value); if (r < 0) - die("Option \"%s\" value \"%s\" is not valid for %s\n", + die("Option \"%s\" value \"%s\" is not valid for %s", name, value, transport->url); if (r > 0) warning("Option \"%s\" is ignored for %s\n", |