Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/arm32/src/putchar.c

    re8975278 red88c8e  
    195195 * @param ch    Character to display
    196196 */
    197 void putchar(const wchar_t ch)
     197void putwchar(const wchar_t ch)
    198198{
    199199        if (ch == '\n')
     
    203203                scons_sendb((uint8_t) ch);
    204204        else
    205                 scons_sendb(U_SPECIAL);
     205                scons_sendb('?');
    206206}
    207207
Note: See TracChangeset for help on using the changeset viewer.