From 07127dd94f9d68932f75047f91fd4aed78d2b3cf Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 9 Sep 2010 14:54:46 +0200 Subject: [PATCH] yaz-client: add nl for cs_put error --- client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.c b/client/client.c index ba217e7..c9351d2 100644 --- a/client/client.c +++ b/client/client.c @@ -284,7 +284,7 @@ int send_apdu(Z_APDU *a) do_hex_dump(buf, len); if (cs_put(conn, buf, len) < 0) { - fprintf(stderr, "cs_put: %s", cs_errmsg(cs_errno(conn))); + fprintf(stderr, "cs_put: %s\n", cs_errmsg(cs_errno(conn))); close_session(); return 0; } -- 1.7.10.4