drop trailing newline from warning/error/die messages
Our error reporting routines append a trailing newline, and the strings we pass to them should not include them (otherwise we get an extra blank line after the message). These cases were all found by looking at the results of: git grep -P '[^_](error|error_errno|warning|die|die_errno)\(.*\\n"[,)]' '*.c' Note that we _do_ sometimes include a newline in the middle of such messages, to create multiline output (hence our grep matching "," or ")" after we see the newline, so we know we're at the end of the string). It's possible that one or more of these cases could intentionally be including a blank line at the end, but having looked at them all manually, I think these are all just mistakes. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
2e7b89e038
commit
1a60f2066a
@ -239,7 +239,7 @@ static int ack(struct fetch_negotiator *n, struct commit *c)
|
||||
{
|
||||
int known_to_be_common = !!(c->object.flags & COMMON);
|
||||
if (!(c->object.flags & SEEN))
|
||||
die("received ack for commit %s not sent as 'have'\n",
|
||||
die("received ack for commit %s not sent as 'have'",
|
||||
oid_to_hex(&c->object.oid));
|
||||
mark_common(n->data, c);
|
||||
return known_to_be_common;
|
||||
|
Reference in New Issue
Block a user