Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/rm/rm.c

    rf77c1c9 rd96d9bc  
    149149        }
    150150
    151         if (vfs_lookup(path, WALK_REGULAR, &fd) == EOK) {
     151        fd = vfs_lookup(path, WALK_REGULAR);
     152        if (fd >= 0) {
    152153                vfs_put(fd);
    153154                return RM_FILE;
Note: See TracChangeset for help on using the changeset viewer.