diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-08-09 08:32:39 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-08-09 08:32:39 -0400 |
commit | d2713b4ddc9d8a98d4b687188bcf392fd3235994 (patch) | |
tree | 59d5ef81042786c5b6879bf7bdc82dc214b3b5d6 /src/test/test_hs_common.c | |
parent | a3685ba0c53003361402bed2058009da81618ed5 (diff) | |
download | tor-d2713b4ddc9d8a98d4b687188bcf392fd3235994.tar.gz tor-d2713b4ddc9d8a98d4b687188bcf392fd3235994.zip |
fix another 32-bit warning
Diffstat (limited to 'src/test/test_hs_common.c')
-rw-r--r-- | src/test/test_hs_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_hs_common.c b/src/test/test_hs_common.c index d79d80bfab..b8b7ab00d2 100644 --- a/src/test/test_hs_common.c +++ b/src/test/test_hs_common.c @@ -179,7 +179,7 @@ test_time_period(void *arg) * from hs_get_next_time_period_num() */ { time_t next_tp_start = hs_get_start_time_of_next_time_period(fake_time); - tt_int_op(hs_get_time_period_num(next_tp_start), OP_EQ, + tt_u64_op(hs_get_time_period_num(next_tp_start), OP_EQ, hs_get_next_time_period_num(fake_time)); } |