Changeset b7fd2a0 in mainline for uspace/app/redir/redir.c
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/redir/redir.c
r36f0738 rb7fd2a0 60 60 61 61 int oldfd; 62 int rc = vfs_lookup_open(path, WALK_REGULAR | flags, mode, &oldfd);62 errno_t rc = vfs_lookup_open(path, WALK_REGULAR | flags, mode, &oldfd); 63 63 if (rc != EOK) 64 64 return; … … 82 82 const char **args; 83 83 task_id_t id = 0; 84 int rc;84 errno_t rc; 85 85 86 86 args = (const char **) calloc(argc + 1, sizeof(char *));
Note:
See TracChangeset
for help on using the changeset viewer.