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>
This commit is contained in:
Alexander Potashev
2009-01-04 21:38:41 +03:00
committed by Junio C Hamano
parent e89e2ed7c2
commit d75307084d
16 changed files with 27 additions and 27 deletions

View File

@ -315,7 +315,7 @@ static int git_tcp_connect_sock(char *host, int flags)
/* Not numeric */
struct servent *se = getservbyname(port,"tcp");
if ( !se )
die("Unknown port %s\n", port);
die("Unknown port %s", port);
nport = se->s_port;
}