Changeset 3e242d2 in mainline for uspace/srv/fs/exfat/exfat_dentry.c


Ignore:
Timestamp:
2018-03-22T00:28:05Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a46e56b
Parents:
3be9d10
Message:

Case range is a GCC extension, not a portable construct.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/exfat/exfat_dentry.c

    r3be9d10 r3e242d2  
    112112bool exfat_valid_char(wchar_t ch)
    113113{
     114        if (ch >= 0x01 && ch <= 0x1F)
     115                return false;
     116
    114117        switch (ch) {
    115         case 0x01 ... 0x1F:
    116118        case '/':
    117119        case '\\':
Note: See TracChangeset for help on using the changeset viewer.