commit da8996d611438a1e0f9ad001f95bb78398b0ad86 parent 60fad8d41fc7395bd573a2cd9585ae9cb03febc3 Author: Georg Koppen <gk@torproject.org> Date: Wed, 2 May 2018 06:20:26 +0000 Bug 26000: Fix missing ";" Diffstat:
| M | src/common/compat_time.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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