diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-12-07 10:52:55 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-12-08 14:47:19 -0500 |
commit | 17dcce3fe11bfea9c7c46d2b9fd5baeb63ebe1e2 (patch) | |
tree | f4aa0a4ea953572110a0862738a4a98d989fb2c7 /src/or/protover.h | |
parent | 285632a61b4e4aeec07b26004396473e0d8f4a43 (diff) | |
download | tor-17dcce3fe11bfea9c7c46d2b9fd5baeb63ebe1e2.tar.gz tor-17dcce3fe11bfea9c7c46d2b9fd5baeb63ebe1e2.zip |
Fix wide lines introduced by previous patch.
Diffstat (limited to 'src/or/protover.h')
-rw-r--r-- | src/or/protover.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/protover.h b/src/or/protover.h index 3c0530a3ad..2539c92c37 100644 --- a/src/or/protover.h +++ b/src/or/protover.h @@ -84,7 +84,8 @@ STATIC const char *protocol_type_to_str(protocol_type_t pr); STATIC int str_to_protocol_type(const char *s, protocol_type_t *pr_out); STATIC void proto_entry_free_(proto_entry_t *entry); #endif -#define proto_entry_free(entry) FREE_AND_NULL(proto_entry_t, proto_entry_free_, (entry)) +#define proto_entry_free(entry) \ + FREE_AND_NULL(proto_entry_t, proto_entry_free_, (entry)) #endif /* defined(PROTOVER_PRIVATE) */ |