diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-07-16 16:52:16 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-07-16 16:52:16 +0200 |
commit | 5690284559af012c279e9b989497ccc2e03cfc70 (patch) | |
tree | d9a9eb2232377f8d38bcb06b82daf0bb921e585a /src/or/entrynodes.h | |
parent | 368ff2291b0b400e0ee908ad465ed6f0f56330ec (diff) | |
download | tor-5690284559af012c279e9b989497ccc2e03cfc70.tar.gz tor-5690284559af012c279e9b989497ccc2e03cfc70.zip |
Fix wide lines, make entry_is_live() non-inline
Diffstat (limited to 'src/or/entrynodes.h')
-rw-r--r-- | src/or/entrynodes.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/entrynodes.h b/src/or/entrynodes.h index 81f8b9c2a5..5d91756aa4 100644 --- a/src/or/entrynodes.h +++ b/src/or/entrynodes.h @@ -101,9 +101,9 @@ typedef enum { ENTRY_NEED_DESCRIPTOR = 1<<3, } entry_is_live_flags_t; -STATIC INLINE const node_t *entry_is_live(const entry_guard_t *e, - entry_is_live_flags_t flags, - const char **msg); +STATIC const node_t *entry_is_live(const entry_guard_t *e, + entry_is_live_flags_t flags, + const char **msg); #endif void remove_all_entry_guards(void); |