Changeset 1b20da0 in mainline for uspace/lib/ext4/src/ops.c


Ignore:
Timestamp:
2018-02-28T17:52:03Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3061bc1
Parents:
df6ded8
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
Message:

style: Remove trailing whitespace on non-empty lines, in certain file types.

Command used: tools/srepl '\([^[:space:]]\)\s\+$' '\1' -- *.c *.h *.py *.sh *.s *.S *.ag

File:
1 edited

Legend:

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

    rdf6ded8 r1b20da0  
    110110{
    111111        ext4_node_t *enode = hash_table_get_inst(item, ext4_node_t, link);
    112         return hash_combine(enode->instance->service_id, enode->inode_ref->index);     
     112        return hash_combine(enode->instance->service_id, enode->inode_ref->index);
    113113}
    114114
     
    192192
    193193/** Get root node of filesystem specified by service_id.
    194  * 
     194 *
    195195 * @param rfn        Output pointer to loaded node
    196196 * @param service_id Device to load root node from
     
    205205
    206206/** Check if specified name (component) matches with any directory entry.
    207  * 
     207 *
    208208 * If match is found, load and return matching node.
    209209 *
     
    272272}
    273273
    274 /** Main function for getting node from the filesystem. 
     274/** Main function for getting node from the filesystem.
    275275 *
    276276 * @param rfn   Output point to loaded node if operation successful
Note: See TracChangeset for help on using the changeset viewer.