diff options
author | José Bollo <jose.bollo@iot.bzh> | 2016-10-07 14:29:07 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-10-07 14:29:07 +0200 |
commit | cfb98e8c4c23dd65d75e7670ea146e9419cd57f6 (patch) | |
tree | 9d9cab34988c2e345ff1d61ced3acbe2cbe9c6f0 | |
parent | dcdb2427f80a325fad889586c8696a2b684d6a61 (diff) |
Fix a compiler error
Change-Id: Id95c612de55fe5606be945ac74c2c157620c8839
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r-- | bindings/samples/HelloWorld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/samples/HelloWorld.c b/bindings/samples/HelloWorld.c index 48059cf5..66dec8fa 100644 --- a/bindings/samples/HelloWorld.c +++ b/bindings/samples/HelloWorld.c @@ -131,7 +131,7 @@ static void pingNull (struct afb_req request) static void pingBug (struct afb_req request) { - ping((struct afb_req){NULL,NULL,NULL}, NULL, "pingBug"); + ping((struct afb_req){NULL,NULL}, NULL, "pingBug"); } static void pingEvent(struct afb_req request) |