diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-05-14 13:04:37 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-05-14 13:04:37 -0400 |
commit | 757725ffdef0aa64a5a4a642eb08c10ec8f0ae4d (patch) | |
tree | d17c7627ecb043f519af1e8f834471690214d9ea /src | |
parent | 7134be06379f2a964c0a84ecb7ac002f59ea3214 (diff) | |
download | tor-757725ffdef0aa64a5a4a642eb08c10ec8f0ae4d.tar tor-757725ffdef0aa64a5a4a642eb08c10ec8f0ae4d.tar.gz |
MSVC build issue: we use INLINE as the one that will magically work
Diffstat (limited to 'src')
-rw-r--r-- | src/or/buffers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/buffers.c b/src/or/buffers.c index d60e54e87..aa3e01fd9 100644 --- a/src/or/buffers.c +++ b/src/or/buffers.c @@ -1011,7 +1011,7 @@ fetch_from_buf(char *string, size_t string_len, buf_t *buf) /** True iff the cell command <b>command</b> is one that implies a * variable-length cell in Tor link protocol <b>linkproto</b>. */ -static inline int +static INLINE int cell_command_is_var_length(uint8_t command, int linkproto) { /* If linkproto is v2 (2), CELL_VERSIONS is the only variable-length cells |