Subversion Repositories HelenOS

Compare Revisions

Regard whitespace Rev 3154 → Rev 3155

/branches/dynload/uspace/app/init/init.c
84,6 → 84,12
{
printf(NAME ": Spawning %s\n", fname);
if (task_spawn_ex(fname, NULL) != 0) {
/* Success */
sleep(1);
}
return;
int fd = open(fname, O_RDONLY);
if (fd >= 0) {