From: Felix Fietkau Date: Sun, 11 Sep 2011 20:31:59 +0000 (+0200) Subject: use false instead of 0 for a bool variable X-Git-Url: http://git.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=b7ab9ef01354a2d1c36d7089be366d1684b5ca35;hp=e70cc01c34a4a3faded4bbdd50b9b716bd2ca94c use false instead of 0 for a bool variable --- diff --git a/proto-shell.c b/proto-shell.c index 7acb4c6..25cd57b 100644 --- a/proto-shell.c +++ b/proto-shell.c @@ -125,7 +125,7 @@ proto_shell_setup_cb(struct uloop_process *p, int ret) state = container_of(p, struct proto_shell_state, setup_task); uloop_timeout_cancel(&state->setup_timeout); if (state->teardown_pending) { - state->teardown_pending = 0; + state->teardown_pending = false; proto_shell_handler(&state->proto, PROTO_CMD_TEARDOWN, false); } }