Rubén Justo <rjusto@xxxxxxxxx> writes: > diff --git a/add-patch.c b/add-patch.c > index 0997d4af73..fc0eed4fd4 100644 > --- a/add-patch.c > +++ b/add-patch.c > @@ -293,10 +293,9 @@ static void err(struct add_p_state *s, const char *fmt, ...) > va_list args; > > va_start(args, fmt); > - fputs(s->s.error_color, stderr); > - vfprintf(stderr, fmt, args); > - fputs(s->s.reset_color, stderr); > - fputc('\n', stderr); > + fputs(s->s.error_color, stdout); > + vprintf(fmt, args); > + puts(s->s.reset_color); I like the attention of the detail here ;-).