Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/driver.c

    r1c635d6 r1db5669  
    4040#include <str_error.h>
    4141#include <stdio.h>
    42 #include <task.h>
    4342
    4443#include "dev.h"
     
    291290        log_msg(LOG_DEFAULT, LVL_DEBUG, "start_driver(drv=\"%s\")", drv->name);
    292291       
    293         rc = task_spawnl(NULL, NULL, drv->binary_path, drv->binary_path, NULL);
     292        rc = task_spawnl(NULL, drv->binary_path, drv->binary_path, NULL);
    294293        if (rc != EOK) {
    295294                log_msg(LOG_DEFAULT, LVL_ERROR, "Spawning driver `%s' (%s) failed: %s.",
Note: See TracChangeset for help on using the changeset viewer.