Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tester/print/print4.c

    rd16fc78 r2d11a7d8  
    3131#include "../tester.h"
    3232
    33 const char *test_print4(void)
     33char *test_print4(void)
    3434{
    3535        TPRINTF("ASCII printable characters (32 - 127) using printf(\"%%c\") and printf(\"%%lc\"):\n");
     
    4545                TPRINTF("  ");
    4646                for (index = 0; index < 32; index++)
    47                         TPRINTF("%lc", (wint_t) ((group << 5) + index));
     47                        TPRINTF("%lc", (wchar_t) ((group << 5) + index));
    4848               
    4949                TPRINTF("\n");
     
    5757                uint8_t index;
    5858                for (index = 0; index < 32; index++)
    59                         TPRINTF("%lc", (wint_t) ((group << 5) + index));
     59                        TPRINTF("%lc", (wchar_t) ((group << 5) + index));
    6060               
    6161                TPRINTF("\n");
Note: See TracChangeset for help on using the changeset viewer.