From 92bce6034ead88d1a11b5bdacd975a9d4cbec795 Mon Sep 17 00:00:00 2001 From: Mauro Sardara Date: Tue, 29 Jan 2019 16:39:50 +0100 Subject: [HICN-10] Treat warning as errors in compilation during verify jobs. Change-Id: Iab6deb14157f81c9f2f8ba6762e93e9860b108bd Signed-off-by: Mauro Sardara --- hicn-light/src/command_line/daemon/hicnLightDaemon_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hicn-light') diff --git a/hicn-light/src/command_line/daemon/hicnLightDaemon_main.c b/hicn-light/src/command_line/daemon/hicnLightDaemon_main.c index f6d521711..415e98d65 100755 --- a/hicn-light/src/command_line/daemon/hicnLightDaemon_main.c +++ b/hicn-light/src/command_line/daemon/hicnLightDaemon_main.c @@ -158,7 +158,7 @@ static void _daemonize(void) { } int forkReturn = fork(); - parcTrapUnexpectedStateIf(forkReturn < 0, "Fork error"); + parcTrapUnexpectedStateIf(forkReturn < 0, "Fork error") if (forkReturn > 0) { // parent exits -- cgit 1.2.3-korg