Ignore:
Timestamp:
2012-04-04T18:03:04Z (12 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
662bd71
Parents:
d3ee35b
Message:

fixed bug with block group flags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/libext4_block_group.c

    rd3ee35b r81092ce  
    200200}
    201201
     202// Flags operations
     203bool ext4_block_group_has_flag(ext4_block_group_t *bg, uint32_t flag)
     204{
     205        if (ext4_block_group_get_flags(bg) & flag) {
     206                return true;
     207        }
     208        return false;
     209}
     210
    202211/**
    203212 * @}
Note: See TracChangeset for help on using the changeset viewer.