diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-05-22 12:54:05 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-05-22 12:54:05 -0400 |
commit | 240bb177140099690213dfc524a235abd2aa0eb8 (patch) | |
tree | 999887c599907c7f33e75defacc4d19db45a8836 /src | |
parent | d2bc019053058b09b5552d327106d9fbe0acad56 (diff) | |
download | tor-240bb177140099690213dfc524a235abd2aa0eb8.tar.gz tor-240bb177140099690213dfc524a235abd2aa0eb8.zip |
uint breaks compilation on windows
Diffstat (limited to 'src')
-rw-r--r-- | src/or/protover.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/protover.c b/src/or/protover.c index 94e6b11c46..ae6cda092b 100644 --- a/src/or/protover.c +++ b/src/or/protover.c @@ -53,7 +53,7 @@ static const struct { /* Maximum allowed length of any single subprotocol name. */ // C_RUST_COUPLED: src/rust/protover/protover.rs // `MAX_PROTOCOL_NAME_LENGTH` -static const uint MAX_PROTOCOL_NAME_LENGTH = 100; +static const unsigned MAX_PROTOCOL_NAME_LENGTH = 100; /** * Given a protocol_type_t, return the corresponding string used in |