Skip to content

Commit

Permalink
fixed format specifier for strings
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmorgner committed Dec 16, 2021
1 parent dd8b8b9 commit 542be23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ccid/src/ccid.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ ccid_desc = {
#define debug_sc_result(sc_result) \
do { \
if (sc_result < 0) \
sc_debug(ctx, SC_LOG_DEBUG_VERBOSE, sc_strerror(sc_result)); \
sc_debug(ctx, SC_LOG_DEBUG_VERBOSE, "%s", sc_strerror(sc_result)); \
else \
sc_debug(ctx, SC_LOG_DEBUG_NORMAL, sc_strerror(sc_result)); \
sc_debug(ctx, SC_LOG_DEBUG_NORMAL, "%s", sc_strerror(sc_result)); \
} while (0)

static int
Expand Down

0 comments on commit 542be23

Please sign in to comment.