Skip to content

Commit

Permalink
Fix incorrect printf format identifier
Browse files Browse the repository at this point in the history
Signed-off-by: DL6ER <dl6er@dl6er.de>
  • Loading branch information
DL6ER committed Feb 21, 2021
1 parent 0463544 commit 06c7216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ size_t addstr(const char *input)
char *str = str_escape(input, &N);

if(N > 0)
logg("INFO: FTL escaped %ui characters in \"%s\"", N, str);
logg("INFO: FTL escaped %u characters in \"%s\"", N, str);

// Debugging output
if(config.debug & DEBUG_SHMEM)
Expand Down

0 comments on commit 06c7216

Please sign in to comment.