From 1c9426d6e027d4a7789471691ad1703b05f60fad Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 14 Oct 2004 03:18:14 +0000 Subject: Build without warnings on mac gcc 3.3 svn:r2487 --- src/common/tortls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/tortls.c') diff --git a/src/common/tortls.c b/src/common/tortls.c index 8a4dccaa2e..306d9f55ec 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -465,7 +465,7 @@ tor_tls_write(tor_tls *tls, char *cp, size_t n) /* if WANTWRITE last time, we must use the _same_ n as before */ tor_assert(n >= tls->wantwrite_n); log_fn(LOG_DEBUG,"resuming pending-write, (%d to flush, reusing %d)", - n, tls->wantwrite_n); + (int)n, (int)tls->wantwrite_n); n = tls->wantwrite_n; tls->wantwrite_n = 0; } -- cgit v1.2.3-54-g00ecf