Changeset 0055cfd in mainline


Ignore:
Timestamp:
2010-02-01T19:18:19Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
393bef1
Parents:
c16013b
Message:

Fix type of argument passed to tmpfs_node_put().
Fix compiler warning.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/tmpfs/tmpfs_ops.c

    rc16013b r0055cfd  
    170170                assert((keys == 1) || (keys == 2));
    171171        }
     172
     173        return 0;
    172174}
    173175
     
    469471        rc = tmpfs_root_get(&rootfn, dev_handle);
    470472        if ((rc == EOK) && (rootfn)) {
    471                 (void) tmpfs_node_put(&rootfn);
     473                (void) tmpfs_node_put(rootfn);
    472474                free(opts);
    473475                ipc_answer_0(rid, EEXIST);
Note: See TracChangeset for help on using the changeset viewer.