From: Nick Mathewson Date: Wed, 8 Jan 2014 16:58:50 +0000 (-0500) Subject: Whoops; fix compilation in bench.c X-Git-Tag: release-2.1.4-alpha~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=544cf8888ae95f29112fa8fb024b630c3134948a;p=libevent Whoops; fix compilation in bench.c --- diff --git a/test/bench.c b/test/bench.c index b4f78209..ef781ddf 100644 --- a/test/bench.c +++ b/test/bench.c @@ -77,13 +77,13 @@ read_cb(evutil_socket_t fd, short which, void *arg) if (n >= 0) count += n; else - failures++ + failures++; if (writes) { if (widx >= num_pipes) widx -= num_pipes; n = send(pipes[2 * widx + 1], "e", 1, 0); if (n != 1) - failures++ + failures++; writes--; fired++; }