diff options
author | Mauro Sardara <msardara@cisco.com> | 2019-01-29 16:32:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2019-01-29 16:32:54 +0000 |
commit | a2e898eae8086cded2acfa96347184b3aa88d316 (patch) | |
tree | f97f0088716b08e9b0042ee5878ef3435160938d /hicn-light | |
parent | fce54a724e80c7442c98da8bf491ce60eb762db1 (diff) | |
parent | 92bce6034ead88d1a11b5bdacd975a9d4cbec795 (diff) |
Merge "[HICN-10] Treat warning as errors in compilation during verify jobs."
Diffstat (limited to 'hicn-light')
-rwxr-xr-x | hicn-light/src/command_line/daemon/hicnLightDaemon_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |