From 1b75eaa5c616d993f42645f981c34e4857fdb295 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Sat, 17 Apr 2021 18:59:52 +0200 Subject: [PATCH] Fix log message when no reader is found --- ccid/src/scutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccid/src/scutil.c b/ccid/src/scutil.c index c6c9e21..37304ef 100644 --- a/ccid/src/scutil.c +++ b/ccid/src/scutil.c @@ -46,7 +46,7 @@ int initialize(int reader_id, int verbose, reader_count = sc_ctx_get_reader_count(*ctx); if (reader_count == 0) { - sc_debug(*ctx, SC_LOG_DEBUG_NORMAL, "No reader not found.\n"); + sc_debug(*ctx, SC_LOG_DEBUG_NORMAL, "No reader found.\n"); return SC_ERROR_NO_READERS_FOUND; }