]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
appease check-spaces
authorNick Mathewson <nickm@torproject.org>
Fri, 13 Nov 2015 18:46:47 +0000 (13:46 -0500)
committerNick Mathewson <nickm@torproject.org>
Fri, 13 Nov 2015 18:46:47 +0000 (13:46 -0500)
src/common/util.c
src/or/circuitlist.c

index 6a5b13e07a480d28b2e029c00550a2936b171b90..ce3646cd64882b3bcbb7f95503f682846d0263dc 100644 (file)
@@ -5415,7 +5415,8 @@ tor_weak_random_range(tor_weak_rng_t *rng, int32_t top)
 /** Cast a given double value to a int64_t. Return 0 if number is NaN.
  * Returns either INT64_MIN or INT64_MAX if number is outside of the int64_t
  * range. */
-int64_t clamp_double_to_int64(double number)
+int64_t
+clamp_double_to_int64(double number)
 {
   int exp;
 
@@ -5445,3 +5446,4 @@ int64_t clamp_double_to_int64(double number)
   /* Handle infinities and finite numbers with magnitude >= 2^63. */
   return signbit(number) ? INT64_MIN : INT64_MAX;
 }
+
index 324f9f3c9394125b072e37b485d3cfd387544e80..c4992d47ff144c42ff799401075e98db8fc3ad91 100644 (file)
@@ -44,8 +44,8 @@ static smartlist_t *global_circuitlist = NULL;
 /** A list of all the circuits in CIRCUIT_STATE_CHAN_WAIT. */
 static smartlist_t *circuits_pending_chans = NULL;
 
-/** A list of all the circuits that have been marked with circuit_mark_for_close
- * and which are waiting for circuit_about_to_free(). */
+/** A list of all the circuits that have been marked with
+ * circuit_mark_for_close and which are waiting for circuit_about_to_free. */
 static smartlist_t *circuits_pending_close = NULL;
 
 static void circuit_free_cpath_node(crypt_path_t *victim);
@@ -1860,7 +1860,6 @@ circuit_about_to_free(circuit_t *circ)
       connection_edge_destroy(circ->n_circ_id, conn);
     ocirc->p_streams = NULL;
   }
-
 }
 
 /** Given a marked circuit <b>circ</b>, aggressively free its cell queues to