Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/redir/redir.c

    r19f857a r49647be  
    3939#include <fcntl.h>
    4040#include <unistd.h>
    41 #include <str.h>
     41#include <string.h>
    4242#include <stdio.h>
    4343#include <task.h>
     
    7272static task_id_t spawn(int argc, char *argv[])
    7373{
    74         const char **args = (const char **) calloc(argc + 1, sizeof(char *));
     74        char **args = (char *) calloc(argc + 1, sizeof(char *));
    7575        if (!args) {
    7676                printf("No memory available\n");
Note: See TracChangeset for help on using the changeset viewer.