Changeset 23a0368 in mainline for uspace/drv/bus/isa/isa.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/drv/bus/isa/isa.c
rb5b5d84 r23a0368 54 54 #include <ipc/irc.h> 55 55 #include <ipc/services.h> 56 #include < sys/stat.h>56 #include <vfs/vfs.h> 57 57 #include <irc.h> 58 58 #include <ns.h> … … 264 264 opened = true; 265 265 266 if ( fstat(fd, &st) != EOK) {267 ddf_msg(LVL_ERROR, "Unable to fstat %d", fd);266 if (vfs_stat(fd, &st) != EOK) { 267 ddf_msg(LVL_ERROR, "Unable to vfs_stat %d", fd); 268 268 goto cleanup; 269 269 }
Note:
See TracChangeset
for help on using the changeset viewer.