Browse Source

Remove unneeded braces.

master
Richard Nyberg 18 years ago
parent
commit
326dc406e7
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      btpd/cli_if.c

+ 1
- 2
btpd/cli_if.c View File

@@ -363,9 +363,8 @@ cmd_stop_all(struct cli *cli, int argc, const char *args)
int ret = write_code_buffer(cli, IPC_OK);
active_clear();
BTPDQ_FOREACH(tp, torrent_get_all(), entry)
if (tp->state != T_STOPPING) {
if (tp->state != T_STOPPING)
torrent_stop(tp);
}
return ret;
}



Loading…
Cancel
Save