aboutsummaryrefslogtreecommitdiffstats
path: root/src/jobs.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-06-02 14:37:35 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-06-02 14:37:35 +0200
commit8ed4166fe1e1d24c174ae53101159853709b1346 (patch)
tree183290af4eff508147a35a3611a1c476750c271a /src/jobs.c
parentcc83f1893aa03e639dfa57ff58ce9f9875461b66 (diff)
Fix error on initialisation
Change-Id: If6a988359b4d2747cefdd683b6328f5b36e37548 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/jobs.c')
-rw-r--r--src/jobs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jobs.c b/src/jobs.c
index 8725d00e..1e84c824 100644
--- a/src/jobs.c
+++ b/src/jobs.c
@@ -689,7 +689,7 @@ struct sd_event *jobs_get_sd_event()
* @param start The start routine to activate (can't be NULL)
* @return 0 in case of success or -1 in case of error.
*/
-int jobs_start(int allowed_count, int start_count, int waiter_count, void (*start)())
+int jobs_start(int allowed_count, int start_count, int waiter_count, void (*start)(int signum))
{
int rc, launched;
struct thread me;