Changeset 58e4d85 in mainline for uspace/lib/c/generic/vfs/mtab.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/mtab.c

    r3b47db6 r58e4d85  
    9595
    9696                rc = vfs_stat_path(child, &st);
    97                 if (rc != 0) {
     97                if (rc != EOK) {
    9898                        free(child);
    9999                        closedir(dir);
     
    125125
    126126        errno_t rc = vfs_stat_path("/", &st);
    127         if (rc != 0)
     127        if (rc != EOK)
    128128                return rc;
    129129
Note: See TracChangeset for help on using the changeset viewer.