diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-12-15 13:03:21 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-12-15 13:03:21 -0500 |
commit | 744958e0ddc74e7f4db12a5d078d1188bf9f48e1 (patch) | |
tree | 7de082142b97ee8d6b57b143da1f1a5e257c4a4c /src/or/connection.h | |
parent | a7d44731d9ac831cd68f34ac640b50cdde3a60af (diff) | |
download | tor-744958e0ddc74e7f4db12a5d078d1188bf9f48e1.tar.gz tor-744958e0ddc74e7f4db12a5d078d1188bf9f48e1.zip |
Fix a few compilation warnings and errors
Diffstat (limited to 'src/or/connection.h')
-rw-r--r-- | src/or/connection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection.h b/src/or/connection.h index 7479faa509..59ea6d898e 100644 --- a/src/or/connection.h +++ b/src/or/connection.h @@ -216,7 +216,7 @@ smartlist_t *connection_dir_list_by_purpose_resource_and_state( /** Return a count of directory connections that are fetching the item * described by <b>purpose</b>/<b>resource</b>. */ -static INLINE int +static inline int connection_dir_count_by_purpose_and_resource( int purpose, const char *resource) @@ -229,7 +229,7 @@ connection_dir_count_by_purpose_and_resource( /** Return a count of directory connections that are fetching the item * described by <b>purpose</b>/<b>resource</b>/<b>state</b>. */ -static INLINE int +static inline int connection_dir_count_by_purpose_resource_and_state( int purpose, const char *resource, |