diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-10-02 13:13:58 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-10-02 13:13:58 +0200 |
commit | ac8c5ec67a8b2f36f1c76777c640fc4299f42307 (patch) | |
tree | 42bf82b9a3deb804366a29cdc1b0086ce313722d /src/common | |
parent | c01f9d9ffe03d5c46833df477fcf2a4bd36dd389 (diff) | |
download | tor-ac8c5ec67a8b2f36f1c76777c640fc4299f42307.tar.gz tor-ac8c5ec67a8b2f36f1c76777c640fc4299f42307.zip |
Clean up compat_libevent tests
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/compat_libevent.c | 1 | ||||
-rw-r--r-- | src/common/compat_libevent.h | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/compat_libevent.c b/src/common/compat_libevent.c index 6cae41bc2d..29e5c5f63c 100644 --- a/src/common/compat_libevent.c +++ b/src/common/compat_libevent.c @@ -626,3 +626,4 @@ tor_gettimeofday_cached_monotonic(struct timeval *tv) memcpy(&last_tv, tv, sizeof(struct timeval)); } } + diff --git a/src/common/compat_libevent.h b/src/common/compat_libevent.h index 9530ca99d7..8ee02c0b6d 100644 --- a/src/common/compat_libevent.h +++ b/src/common/compat_libevent.h @@ -91,7 +91,6 @@ void tor_gettimeofday_cache_set(const struct timeval *tv); #endif void tor_gettimeofday_cached_monotonic(struct timeval *tv); - #ifdef COMPAT_LIBEVENT_PRIVATE /** A number representing a version of Libevent. @@ -121,7 +120,6 @@ typedef uint32_t le_version_t; * it is. */ #define LE_OTHER V(0,0,99) - STATIC void libevent_logging_callback(int severity, const char *msg); STATIC le_version_t @@ -131,3 +129,4 @@ le_versions_compatibility(le_version_t v); #endif #endif + |