Skip to content

Commit

Permalink
Missing newline in CCID error
Browse files Browse the repository at this point in the history
  • Loading branch information
emaxx-google authored and frankmorgner committed Apr 17, 2024
1 parent 29ccf47 commit d2e607f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ccid/src/scutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ int initialize(int reader_id, int verbose,

int r = sc_establish_context(ctx, "");
if (r < 0 || !*ctx) {
fprintf(stderr, "Failed to create initial context: %s", sc_strerror(r));
fprintf(stderr, "Failed to create initial context: %s\n", sc_strerror(r));
return r;
}

Expand Down

0 comments on commit d2e607f

Please sign in to comment.