diff options
author | José Bollo <jose.bollo@iot.bzh> | 2016-04-06 17:29:13 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-04-06 17:29:13 +0200 |
commit | a93623ba9a6914f381449205873a1d879deaee88 (patch) | |
tree | 1e32812e2fdacd35a133d395cda3ddce42041d26 /plugins/samples/HelloWorld.c | |
parent | ee28f046a7d389a4de305297abb065a9fddfb928 (diff) |
make a sigv even in release
Change-Id: Id54965016abbe749121c43ec675c6aeb06f5610e
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'plugins/samples/HelloWorld.c')
-rw-r--r-- | plugins/samples/HelloWorld.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/samples/HelloWorld.c b/plugins/samples/HelloWorld.c index c60cc70c..72ad0b34 100644 --- a/plugins/samples/HelloWorld.c +++ b/plugins/samples/HelloWorld.c @@ -83,12 +83,7 @@ static void pingNull (struct afb_req request) static void pingBug (struct afb_req request) { - int a,b,c; - - b=4; - c=0; - a=b/c; - + pingNull((struct afb_req){NULL,NULL,NULL}); } |