Commit 92d04721 authored by Nick Mathewson's avatar Nick Mathewson 🦞
Browse files

remove a needless "if (1)" that was there for indentation; fix indentation.

parent b78803f9
Loading
Loading
Loading
Loading
+38 −38
Original line number Diff line number Diff line
@@ -2091,7 +2091,7 @@ static int
run_main_loop_once(void)
{
  int loop_result;
  if (1) {

  if (nt_service_is_stopping())
    return 0;

@@ -2135,7 +2135,7 @@ run_main_loop_once(void)
      return 1;
    }
  }
  }

  return 1;
}