git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] i18n: Fixed unmatched single quote in error message
@ 2016-11-20 12:26 Jiang Xin
  2016-11-21 14:22 ` Johannes Schindelin
  0 siblings, 1 reply; 3+ messages in thread
From: Jiang Xin @ 2016-11-20 12:26 UTC (permalink / raw)
  To: Junio C Hamano, Johannes Schindelin; +Cc: Git List, Jiang Xin

Fixed unmatched single quote introduced by commit:

 * f56fffef9a sequencer: teach write_message() to append an optional LF

Signed-off-by: Jiang Xin <worldhello.net@gmail.com>
---
 sequencer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sequencer.c b/sequencer.c
index 6f0ff9e413..30b10ba143 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -248,7 +248,7 @@ static int write_message(const void *buf, size_t len, const char *filename,
 	}
 	if (append_eol && write(msg_fd, "\n", 1) < 0) {
 		rollback_lock_file(&msg_file);
-		return error_errno(_("could not write eol to '%s"), filename);
+		return error_errno(_("could not write eol to '%s'"), filename);
 	}
 	if (commit_lock_file(&msg_file) < 0) {
 		rollback_lock_file(&msg_file);
-- 
2.11.0.rc0.11.g127c283


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] i18n: Fixed unmatched single quote in error message
  2016-11-20 12:26 [PATCH] i18n: Fixed unmatched single quote in error message Jiang Xin
@ 2016-11-21 14:22 ` Johannes Schindelin
  2016-11-21 17:31   ` Junio C Hamano
  0 siblings, 1 reply; 3+ messages in thread
From: Johannes Schindelin @ 2016-11-21 14:22 UTC (permalink / raw)
  To: Jiang Xin; +Cc: Junio C Hamano, Git List

Hi,

On Sun, 20 Nov 2016, Jiang Xin wrote:

> Fixed unmatched single quote introduced by commit:
> 
>  * f56fffef9a sequencer: teach write_message() to append an optional LF
> 
> Signed-off-by: Jiang Xin <worldhello.net@gmail.com>

ACK!

Thank you,
Dscho

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] i18n: Fixed unmatched single quote in error message
  2016-11-21 14:22 ` Johannes Schindelin
@ 2016-11-21 17:31   ` Junio C Hamano
  0 siblings, 0 replies; 3+ messages in thread
From: Junio C Hamano @ 2016-11-21 17:31 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: Jiang Xin, Git List

Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:

> Hi,
>
> On Sun, 20 Nov 2016, Jiang Xin wrote:
>
>> Fixed unmatched single quote introduced by commit:
>> 
>>  * f56fffef9a sequencer: teach write_message() to append an optional LF
>> 
>> Signed-off-by: Jiang Xin <worldhello.net@gmail.com>
>
> ACK!
>
> Thank you,
> Dscho

Thanks, both.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-11-21 17:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-20 12:26 [PATCH] i18n: Fixed unmatched single quote in error message Jiang Xin
2016-11-21 14:22 ` Johannes Schindelin
2016-11-21 17:31   ` Junio C Hamano

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).