diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-10-14 03:18:14 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-10-14 03:18:14 +0000 |
commit | 1c9426d6e027d4a7789471691ad1703b05f60fad (patch) | |
tree | 0892be29c16011091754cb7fbfe1275bc172a42b /src/common | |
parent | 3737566465f11bf2bd710239e38634590c4c4603 (diff) | |
download | tor-1c9426d6e027d4a7789471691ad1703b05f60fad.tar tor-1c9426d6e027d4a7789471691ad1703b05f60fad.tar.gz |
Build without warnings on mac gcc 3.3
svn:r2487
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/tortls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index 8a4dccaa2..306d9f55e 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; } |