Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4616 → Rev 4617

/trunk/uspace/app/bdsh/exec.c
113,6 → 113,7
{
task_id_t tid;
char *tmp;
int retval;
 
tmp = str_dup(find_command(cmd));
free(found);
125,6 → 126,9
return 1;
}
task_wait(tid);
task_wait(tid, &retval);
if (retval != 0)
printf("Command failed (return value %d).\n", retval);
 
return 0;
}