diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-02-09 00:14:45 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-02-09 00:16:04 -0500 |
commit | d86a45f991693cf2367a6ccb94fc29c22f5f7b45 (patch) | |
tree | b369a86d438d8541cdf5e03c9e6f03b464c20375 /src/or/rendservice.c | |
parent | 561e9becbd1f896c31112ab2dfd56fe7badc9382 (diff) | |
download | tor-d86a45f991693cf2367a6ccb94fc29c22f5f7b45.tar.gz tor-d86a45f991693cf2367a6ccb94fc29c22f5f7b45.zip |
Wrap more macro definitions in (parentheses)
To avoid surprises, good coding practice suggests parenthesizing every
macro definition -- or at the very least, all those involving an
expression.
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r-- | src/or/rendservice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c index f85ac2c03b..10d232c039 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -88,7 +88,7 @@ typedef struct rend_service_port_config_t { /** How many seconds should we wait for new HS descriptors to reach * our clients before we close an expiring intro point? */ -#define INTRO_POINT_EXPIRATION_GRACE_PERIOD 5*60 +#define INTRO_POINT_EXPIRATION_GRACE_PERIOD (5*60) /** Represents a single hidden service running at this OP. */ typedef struct rend_service_t { |