mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 04:43:32 +00:00
Cast to unsigned char instead of unsigned
Cast ctype argument to unsigned char
This commit is contained in:
parent
7b0d14f596
commit
481f550e6c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=15022
@ -146,13 +146,13 @@ display(win, text, size)
|
||||
text++;
|
||||
continue;
|
||||
}
|
||||
if (!isprint(*text) && *text != '\t') {
|
||||
if (!isprint((unsigned char)*text) && *text != '\t') {
|
||||
waddch(win->x_win, '^');
|
||||
getyx(win->x_win, win->x_line, win->x_col);
|
||||
cch = (*text & 63) + 64;
|
||||
waddch(win->x_win, cch);
|
||||
} else
|
||||
waddch(win->x_win, (unsigned)*text);
|
||||
waddch(win->x_win, (unsigned char)*text);
|
||||
getyx(win->x_win, win->x_line, win->x_col);
|
||||
text++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user