~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to uspace/srv/hid/fb/port/kchar.c

MergeĀ mainlineĀ changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
static void kchar_putchar(wchar_t ch)
49
49
{
50
 
        if ((ch >= 0) && (ch < 128))
 
50
        if (ascii_check(ch))
51
51
                *kchar.addr = ch;
52
52
        else
53
53
                *kchar.addr = '?';