Changes in uspace/app/redir/redir.c [49647be:19f857a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/redir/redir.c
r49647be r19f857a 39 39 #include <fcntl.h> 40 40 #include <unistd.h> 41 #include <str ing.h>41 #include <str.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 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.