Changeset 58e4d85 in mainline for uspace/lib/c/generic/vfs/vfs.c


Ignore:
Timestamp:
2018-01-04T20:50:53Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Children:
08d4ea2
Parents:
3b47db6
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:53)
Message:

Change (rc != 0) to (rc != EOK).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/vfs/vfs.c

    r3b47db6 r58e4d85  
    354354        struct stat stat;
    355355        errno_t rc = vfs_stat(file, &stat);
    356         if (rc != 0)
     356        if (rc != EOK)
    357357                return NULL;
    358358       
Note: See TracChangeset for help on using the changeset viewer.