summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGeorg Koppen <gk@torproject.org>2018-05-02 06:20:26 +0000
committerNick Mathewson <nickm@torproject.org>2018-05-02 07:46:05 -0400
commitda8996d611438a1e0f9ad001f95bb78398b0ad86 (patch)
treeaec5933d3b21d088c5be1a209ea7bc47b19d546a /src/common
parent60fad8d41fc7395bd573a2cd9585ae9cb03febc3 (diff)
downloadtor-da8996d611438a1e0f9ad001f95bb78398b0ad86.tar.gz
tor-da8996d611438a1e0f9ad001f95bb78398b0ad86.zip
Bug 26000: Fix missing ";"
Diffstat (limited to 'src/common')
-rw-r--r--src/common/compat_time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/compat_time.c b/src/common/compat_time.c
index b3723f533c..40847a8442 100644
--- a/src/common/compat_time.c
+++ b/src/common/compat_time.c
@@ -630,7 +630,7 @@ int32_t
monotime_coarse_diff_msec32_(const monotime_coarse_t *start,
const monotime_coarse_t *end)
{
- return (int32_t)monotime_coarse_diff_msec(start, end)
+ return (int32_t)monotime_coarse_diff_msec(start, end);
}
int64_t