From: Nick Mathewson Date: Thu, 21 Dec 2017 15:27:37 +0000 (-0500) Subject: clarify a comment X-Git-Tag: tor-0.3.2.8-rc~5^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c38157be9d8fc7de9c6fc0c58e3bc8481a1d48a4;p=thirdparty%2Ftor.git clarify a comment --- diff --git a/src/or/scheduler_kist.c b/src/or/scheduler_kist.c index a50be345b0..19a8db5170 100644 --- a/src/or/scheduler_kist.c +++ b/src/or/scheduler_kist.c @@ -286,8 +286,8 @@ update_socket_info_impl, (socket_table_ent_t *ent)) * more in the kernel for now. */ ent->limit = 0; } else { - /* Adding two positive int64_t together will always fit in an uint64_t. - * And we know this will always be positive. */ + /* The positive sum of two int64_t will always fit into an uint64_t. + * And we know this will always be positive, since we checked above. */ ent->limit = (uint64_t)tcp_space + (uint64_t)extra_space; } return;