Add a \n at the end of an error message - oops.
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Fri, 1 Nov 2002 12:54:03 +0000 (12:54 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Fri, 1 Nov 2002 12:54:03 +0000 (12:54 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@2169 cda61777-01e9-0310-a592-d414129be87e

unix/uxplink.c

index 8f828a5..453a9f4 100644 (file)
@@ -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);