summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmds-balance.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/cmds-balance.c b/cmds-balance.c
index e9e388e8..c9f1288a 100644
--- a/cmds-balance.c
+++ b/cmds-balance.c
@@ -646,7 +646,12 @@ static int cmd_balance_start(int argc, char **argv)
"unable to fork to run balance in background");
exit(1);
case (0):
- chdir("/");
+ /*
+ * Read the return value to silence compiler
+ * warning. Change to / should succeed and
+ * we're not in a security-sensitive context.
+ */
+ i = chdir("/");
close(0);
close(1);
close(2);