]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix "make check-spaces"
authorNick Mathewson <nickm@torproject.org>
Fri, 13 Apr 2018 16:04:54 +0000 (12:04 -0400)
committerNick Mathewson <nickm@torproject.org>
Fri, 13 Apr 2018 20:31:47 +0000 (16:31 -0400)
src/test/test_bwmgt.c

index 003671a42af6b84efc0e3baf518a11482c5ce41d..0579b4a41991cc223fa3b20992df39edf2a74fb2 100644 (file)
@@ -167,7 +167,8 @@ test_bwmgt_token_buf_refill(void *arg)
   tt_int_op(b.read_bucket.bucket, OP_LT, 32*KB+400);
 
   /* Underflow the bucket, make sure we detect when it has tokens again. */
-  tt_int_op(1, OP_EQ, token_bucket_rw_dec_read(&b, b.read_bucket.bucket+16*KB));
+  tt_int_op(1, OP_EQ,
+            token_bucket_rw_dec_read(&b, b.read_bucket.bucket+16*KB));
   tt_int_op(-16*KB, OP_EQ, b.read_bucket.bucket);
   // half a second passes...
   tt_int_op(0, OP_EQ, token_bucket_rw_refill(&b, START_TS + SEC*64));