mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:37:12 +00:00
Send the \n to stdout with the message, not stderr... doh.
This commit is contained in:
@ -695,7 +695,7 @@ server_client_msg_info(struct cmd_ctx *ctx, const char *fmt, ...)
|
||||
vfprintf(ctx->cmdclient->stdout_file, fmt, ap);
|
||||
va_end(ap);
|
||||
|
||||
fputc('\n', ctx->cmdclient->stderr_file);
|
||||
fputc('\n', ctx->cmdclient->stdout_file);
|
||||
fflush(ctx->cmdclient->stdout_file);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user