From: Robert Ransom Date: Mon, 17 Sep 2012 15:13:09 +0000 (-0400) Subject: Fix comment typo in tor_memeq X-Git-Tag: tor-0.2.4.3-alpha~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1e5cd1c7d6f45456c5e7c1b288e5e02e7c02b377;p=thirdparty%2Ftor.git Fix comment typo in tor_memeq --- diff --git a/src/common/di_ops.c b/src/common/di_ops.c index 7683c59dee..418d6e3dca 100644 --- a/src/common/di_ops.c +++ b/src/common/di_ops.c @@ -123,7 +123,7 @@ tor_memeq(const void *a, const void *b, size_t sz) * * If any_difference != 0: * 0 < any_difference < 256, so - * 0 < any_difference - 1 < 255 + * 0 <= any_difference - 1 < 255 * (any_difference - 1) >> 8 == 0 * 1 & ((any_difference - 1) >> 8) == 0 */