Changes in uspace/app/redir/redir.c [f77c1c9:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/redir/redir.c
rf77c1c9 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.