FreeCalypso > hg > themwi-system-sw
changeset 26:c08d81fa8117
themwi-test-mtc: missed newline at the end of error message
on short read from socket
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 28 Jun 2022 19:11:15 -0800 |
parents | fd43f179ff1d |
children | c6572f4c31d2 |
files | mtctest/sock_conn.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mtctest/sock_conn.c Tue Jun 28 18:47:56 2022 -0800 +++ b/mtctest/sock_conn.c Tue Jun 28 19:11:15 2022 -0800 @@ -47,7 +47,7 @@ exit(1); } if (rc < 4) { - fprintf(stderr, "short read from socket: %d bytes", rc); + fprintf(stderr, "short read from socket: %d bytes\n", rc); exit(1); } msg_from_mncc(&msg, rc);