diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-08-17 21:46:34 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-08-17 21:46:34 +0000 |
commit | 1f244d394354c8093ecf5a0029ae06578f74ad91 (patch) | |
tree | 95ee3a24d04d9e7632540f44cb536845f32f7a72 /src/common/compat.c | |
parent | f8b3927e076465808bd31e0e06712fb155ccf125 (diff) | |
download | tor-1f244d394354c8093ecf5a0029ae06578f74ad91.tar.gz tor-1f244d394354c8093ecf5a0029ae06578f74ad91.zip |
r14639@catbus: nickm | 2007-08-17 17:45:28 -0400
Compile without warnings on MinGW, even with --enable-gcc-warnings enabled.
svn:r11157
Diffstat (limited to 'src/common/compat.c')
-rw-r--r-- | src/common/compat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/compat.c b/src/common/compat.c index ebddce74b1..fa7b8c2b3d 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -1671,7 +1671,7 @@ tor_cond_new(void) } /** Release all resources held by <b>cond</b>. */ void -tor_conf_free(tor_cond_t *cond) +tor_cond_free(tor_cond_t *cond) { tor_assert(cond); if (pthread_cond_destroy(&cond->cond)) { |