summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-07-05 14:55:09 -0400
committerNick Mathewson <nickm@torproject.org>2011-07-05 14:55:09 -0400
commitcaf695afdb8682d9cbe6b69c517ea855cf43772c (patch)
tree28e9199cc3fd5d57c644b1978a1ebd8624dabc70 /test
parentaf6a05f723bf8b13e34c1b6e94bacab62fd707e6 (diff)
downloadlibevent-caf695afdb8682d9cbe6b69c517ea855cf43772c.tar.gz
Fix up test_evutil_snprintf
Diffstat (limited to 'test')
-rw-r--r--test/regress_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/regress_util.c b/test/regress_util.c
index f8ceb497..effbcc2b 100644
--- a/test/regress_util.c
+++ b/test/regress_util.c
@@ -381,7 +381,7 @@ test_evutil_snprintf(void *ptr)
char buf[16];
int r;
ev_uint64_t u64 = ((ev_uint64_t)1000000000)*200;
- ev_uint64_t i64 = -1 * (ev_int64_t) u64;
+ ev_int64_t i64 = -1 * (ev_int64_t) u64;
size_t size = 8000;
ev_ssize_t ssize = -9000;