From: Adam Dickmeiss Date: Thu, 9 Sep 2010 12:54:46 +0000 (+0200) Subject: yaz-client: add nl for cs_put error X-Git-Tag: v4.1.0~14 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=07127dd94f9d68932f75047f91fd4aed78d2b3cf yaz-client: add nl for cs_put error --- 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; }