Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/src/superblock.c

    r6ea5e7a r28a5ebd  
    889889        size_t i;
    890890        size_t wi;
    891         wchar_t ch;
     891        char32_t ch;
    892892        errno_t rc;
    893893
     
    896896        while (sb->volume_name[i] != '\0' && i < sizeof(sb->volume_name)) {
    897897                /* ISO 8859-1 codes map to identical Unicode code points */
    898                 ch = (wchar_t)(uint8_t)sb->volume_name[i];
     898                ch = (char32_t)(uint8_t)sb->volume_name[i];
    899899                rc = chr_encode(ch, buf, &wi, bufsz - 1);
    900900                if (rc != EOK)
     
    917917{
    918918        size_t off;
    919         wchar_t ch;
     919        char32_t ch;
    920920        size_t wi;
    921921
Note: See TracChangeset for help on using the changeset viewer.