Changes in uspace/app/redir/redir.c [36e9cd1:a000878c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/redir/redir.c
r36e9cd1 ra000878c 72 72 static task_id_t spawn(int argc, char *argv[]) 73 73 { 74 c har **args = (char **) calloc(argc + 1, sizeof(char *));74 const char **args = (const char **) calloc(argc + 1, sizeof(char *)); 75 75 if (!args) { 76 76 printf("No memory available\n");
Note:
See TracChangeset
for help on using the changeset viewer.