Changeset 23a0368 in mainline for uspace/app/init/init.c
- Timestamp:
- 2017-03-30T19:52:23Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ae7bfbbd
- Parents:
- b5b5d84
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/init/init.c
rb5b5d84 r23a0368 42 42 #include <errno.h> 43 43 #include <fcntl.h> 44 #include <sys/stat.h>45 44 #include <task.h> 46 45 #include <malloc.h> … … 156 155 { 157 156 struct stat s; 158 if ( stat(path, &s) != 0) {157 if (vfs_stat_path(path, &s) != EOK) { 159 158 printf("%s: Unable to stat %s\n", NAME, path); 160 159 return ENOENT;
Note:
See TracChangeset
for help on using the changeset viewer.