From e2f2d0cb0fd412eb99c3cd4a2852191f63444e0a Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 27 Jun 2021 10:53:31 -0600 Subject: [PATCH] fix inadvertent typo that would cause compilation failure on windows --- libs/pbd/microseconds.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pbd/microseconds.cc b/libs/pbd/microseconds.cc index c1c64df015..331cc6f778 100644 --- a/libs/pbd/microseconds.cc +++ b/libs/pbd/microseconds.cc @@ -88,7 +88,7 @@ PBD::get_microseconds () LARGE_INTEGER time; if (timer_rate_usecs) { -/ if (QueryPerformanceCounter (&time)) { + if (QueryPerformanceCounter (&time)) { return (microseconds_t) (time.QuadPart * timer_rate_usecs); } }