diff options
author | Mauro Sardara <msardara@cisco.com> | 2019-01-29 16:39:50 +0100 |
---|---|---|
committer | Mauro Sardara <msardara@cisco.com> | 2019-01-29 17:22:02 +0100 |
commit | 92bce6034ead88d1a11b5bdacd975a9d4cbec795 (patch) | |
tree | be7a991d732881bae27664919e3fc9860327fc26 /hicn-light/src/command_line | |
parent | 317c2f8e695de186487347117296faa04ed42269 (diff) |
[HICN-10] Treat warning as errors in compilation during verify jobs.
Change-Id: Iab6deb14157f81c9f2f8ba6762e93e9860b108bd
Signed-off-by: Mauro Sardara <msardara@cisco.com>
Diffstat (limited to 'hicn-light/src/command_line')
-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 |