Changeset b19e892 in mainline for uspace/app/tester/hw/misc/virtchar1.c
- Timestamp:
- 2017-04-02T10:39:13Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c4cf0d
- Parents:
- 80743a1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/hw/misc/virtchar1.c
r80743a1 rb19e892 45 45 #include <vfs/vfs.h> 46 46 #include <vfs/vfs_sess.h> 47 #include <fcntl.h>48 47 #include "../../tester.h" 49 48 … … 55 54 { 56 55 TPRINTF("Opening `%s'...\n", path); 57 int fd = open(path, O_RDONLY);56 int fd = vfs_lookup(path, WALK_REGULAR); 58 57 if (fd < 0) { 59 58 TPRINTF(" ...error: %s\n", str_error(errno));
Note:
See TracChangeset
for help on using the changeset viewer.