diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-08-09 08:31:44 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-08-09 08:31:44 -0400 |
commit | a3685ba0c53003361402bed2058009da81618ed5 (patch) | |
tree | 2fbbb3c05ed1f8414843303f0fdaec9119aee319 /src/or | |
parent | 21e5146529e4040c7391f3696baa5e6b4370d06d (diff) | |
download | tor-a3685ba0c53003361402bed2058009da81618ed5.tar.gz tor-a3685ba0c53003361402bed2058009da81618ed5.zip |
Fix a warning on 32-bit clang
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/hs_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/hs_common.c b/src/or/hs_common.c index 0d3d41b7cd..6c860b0cf0 100644 --- a/src/or/hs_common.c +++ b/src/or/hs_common.c @@ -245,7 +245,7 @@ hs_get_start_time_of_next_time_period(time_t now) /* Apply rotation offset as specified by prop224 section [TIME-PERIODS] */ unsigned int time_period_rotation_offset = sr_state_get_phase_duration(); - return start_of_next_tp_in_mins * 60 + time_period_rotation_offset; + return (time_t)(start_of_next_tp_in_mins * 60 + time_period_rotation_offset); } /* Create a new rend_data_t for a specific given <b>version</b>. |