From: simon Date: Fri, 1 Nov 2002 12:54:03 +0000 (+0000) Subject: Add a \n at the end of an error message - oops. X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/commitdiff_plain/984992ef01577c0c12cdb5f404ea91d3954264ae Add a \n at the end of an error message - oops. git-svn-id: svn://svn.tartarus.org/sgt/putty@2169 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/unix/uxplink.c b/unix/uxplink.c index 8f828a52..453a9f41 100644 --- a/unix/uxplink.c +++ b/unix/uxplink.c @@ -447,7 +447,7 @@ int main(int argc, char **argv) error = back->init(NULL, &backhandle, cfg.host, cfg.port, &realhost, nodelay); if (error) { - fprintf(stderr, "Unable to open connection:\n%s", error); + fprintf(stderr, "Unable to open connection:\n%s\n", error); return 1; } logctx = log_init(NULL);