From 8ce4ab49977ecb088f0872a206020b13bcf3d097 Mon Sep 17 00:00:00 2001 From: Klas Lindfors Date: Fri, 8 May 2015 13:49:32 +0200 Subject: [PATCH] add newline at end of output --- tool/yubico-piv-tool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/yubico-piv-tool.c b/tool/yubico-piv-tool.c index d74d56e..c0385c2 100644 --- a/tool/yubico-piv-tool.c +++ b/tool/yubico-piv-tool.c @@ -389,7 +389,7 @@ static bool import_key(ykpiv_state *state, enum enum_key_format key_format, &recv_len, &sw) != YKPIV_OK) { return false; } else if(sw != 0x9000) { - fprintf(stderr, "Failed import command with code %x.", sw); + fprintf(stderr, "Failed import command with code %x.\n", sw); } else { ret = true; }