diff options
author | Georg Koppen <gk@torproject.org> | 2018-05-02 06:20:26 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-05-02 07:46:05 -0400 |
commit | da8996d611438a1e0f9ad001f95bb78398b0ad86 (patch) | |
tree | aec5933d3b21d088c5be1a209ea7bc47b19d546a /src/common | |
parent | 60fad8d41fc7395bd573a2cd9585ae9cb03febc3 (diff) | |
download | tor-da8996d611438a1e0f9ad001f95bb78398b0ad86.tar.gz tor-da8996d611438a1e0f9ad001f95bb78398b0ad86.zip |
Bug 26000: Fix missing ";"
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/compat_time.c | 2 |
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 |