[tor-commits] [tor/master] Fix warnings from check-spaces

nickm at torproject.org nickm at torproject.org
Mon Feb 1 15:24:16 UTC 2016


commit 7631cffbccd1536278228f994bc1762e430157ac
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Feb 1 10:24:13 2016 -0500

    Fix warnings from check-spaces
---
 src/test/test_options.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/test/test_options.c b/src/test/test_options.c
index 2d48cd1..dcf97f8 100644
--- a/src/test/test_options.c
+++ b/src/test/test_options.c
@@ -370,7 +370,7 @@ get_options_test_data(const char *conf)
   }
   tt_assert(rv == 0);
 
-done:
+ done:
   config_free_lines(cl);
   if (rv != 0) {
     free_options_test_data(result);
@@ -1475,7 +1475,8 @@ test_options_validate__paths_needed(void *ignored)
   tt_int_op(ret, OP_EQ, -1);
   tt_assert(tdata->opt->PathsNeededToBuildCircuits > 0.24 &&
             tdata->opt->PathsNeededToBuildCircuits < 0.26);
-  expect_log_msg("PathsNeededToBuildCircuits is too low. Increasing to 0.25\n");
+  expect_log_msg("PathsNeededToBuildCircuits is too low. "
+                 "Increasing to 0.25\n");
   tor_free(msg);
 
   free_options_test_data(tdata);



More information about the tor-commits mailing list