From 4c3a0eb35702ac4ceae5db24dda85f67b84b23d8 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Tue, 13 Sep 2011 08:37:40 -0500 Subject: [PATCH] fix build for n00buntu --- src/switch_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_core.c b/src/switch_core.c index b64e185dd1..045ff3978c 100644 --- a/src/switch_core.c +++ b/src/switch_core.c @@ -2402,7 +2402,7 @@ static int switch_system_fork(const char *cmd, switch_bool_t wait) } set_low_priority(); - system(cmd); + i = system(cmd); exit(0); }