Changeset a1d7b4b in mainline for uspace/srv/fs/fat/fat_dentry.c


Ignore:
Timestamp:
2012-04-08T16:40:20Z (12 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
22a8a9b
Parents:
b6913b7
Message:

Use the proper logical operator.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_dentry.c

    rb6913b7 ra1d7b4b  
    334334        while (i < count) {
    335335                if ((ch = str_decode(src, &off, STR_NO_LIMIT)) != 0) {
    336                         if (ascii_check(ch) & IS_D_CHAR(ch))
     336                        if (ascii_check(ch) && IS_D_CHAR(ch))
    337337                                *dst = toupper(ch);
    338338                        else
Note: See TracChangeset for help on using the changeset viewer.