Changes in uspace/app/redir/redir.c [19f857a:49647be] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/redir/redir.c
r19f857a r49647be 39 39 #include <fcntl.h> 40 40 #include <unistd.h> 41 #include <str .h>41 #include <string.h> 42 42 #include <stdio.h> 43 43 #include <task.h> … … 72 72 static task_id_t spawn(int argc, char *argv[]) 73 73 { 74 c onst char **args = (const char **) calloc(argc + 1, sizeof(char *));74 char **args = (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.