Subversion Repositories HelenOS

Rev

Rev 4341 | Rev 4348 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4341 Rev 4346
Line 119... Line 119...
119
 
119
 
120
    tid = task_spawn((const char *)tmp, argv);
120
    tid = task_spawn((const char *)tmp, argv);
121
    free(tmp);
121
    free(tmp);
122
 
122
 
123
    if (tid == 0) {
123
    if (tid == 0) {
124
        cli_error(CL_EEXEC, "Can not spawn %s", cmd);
124
        cli_error(CL_EEXEC, "Cannot spawn `%s'.", cmd);
125
        return 1;
125
        return 1;
126
    } else {
126
    } else {
127
        return 0;
127
        return 0;
128
    }
128
    }
129
}
129
}