diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-12-09 00:25:23 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-12-09 00:25:23 +0100 |
commit | 782e4b05dd8ea70e1f457607dfd72104529e5d97 (patch) | |
tree | 29c76dd652b9feb189628c3ab646437a077cd5c7 /include | |
parent | b03f80e6d7a9248a80eb3ea6a555a336ae582027 (diff) | |
download | connman-782e4b05dd8ea70e1f457607dfd72104529e5d97.tar.gz connman-782e4b05dd8ea70e1f457607dfd72104529e5d97.tar.bz2 connman-782e4b05dd8ea70e1f457607dfd72104529e5d97.zip |
Fix broken flag handling for task spawning
Diffstat (limited to 'include')
-rw-r--r-- | include/task.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/task.h b/include/task.h index 2239188d..0d84bab4 100644 --- a/include/task.h +++ b/include/task.h @@ -57,7 +57,7 @@ int connman_task_set_notify(struct connman_task *task, const char *member, int connman_task_run(struct connman_task *task, connman_task_exit_t function, void *user_data, - int *fd, int *standard_output, int *standard_error); + int *stdin_fd, int *stdout_fd, int *stderr_fd); int connman_task_stop(struct connman_task *task); #ifdef __cplusplus |