Fix another printf() %c char

This commit is contained in:
Paul LeoNerd Evans 2012-01-20 18:13:37 +00:00
parent 229792aad7
commit 62b8773108
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ static TermKeyResult peekkey_ss3(TermKey *tk, TermKeyCsi *csi, size_t introlen,
if(key->code.sym == TERMKEY_SYM_UNKNOWN) {
#ifdef DEBUG
fprintf(stderr, "CSI: Unknown SS3 %c (0x%02x)\n", cmd, cmd);
fprintf(stderr, "CSI: Unknown SS3 %c (0x%02x)\n", (char)cmd, cmd);
#endif
return TERMKEY_RES_NONE;
}