From: Tony Finch Date: Mon, 16 Jan 2023 20:31:36 +0000 (+0000) Subject: Fix a typo in the NS_PER_ macros X-Git-Tag: v9.19.10~42^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=290899661d462d6a620588bcc94a3ea552d85bea;p=thirdparty%2Fbind9.git Fix a typo in the NS_PER_ macros Milliseconds and microseconds were swapped. --- diff --git a/lib/isc/include/isc/time.h b/lib/isc/include/isc/time.h index 9470903152f..5de7ab6970f 100644 --- a/lib/isc/include/isc/time.h +++ b/lib/isc/include/isc/time.h @@ -25,8 +25,8 @@ enum { MS_PER_SEC = 1000, /*%< Milliseonds per second. */ US_PER_MS = 1000, /*%< Microseconds per millisecond. */ US_PER_SEC = 1000 * 1000, /*%< Microseconds per second. */ - NS_PER_US = 1000, /*%< Nanoseconds per millisecond. */ - NS_PER_MS = 1000 * 1000, /*%< Nanoseconds per microsecond. */ + NS_PER_US = 1000, /*%< Nanoseconds per microsecond. */ + NS_PER_MS = 1000 * 1000, /*%< Nanoseconds per millisecond. */ NS_PER_SEC = 1000 * 1000 * 1000, /*%< Nanoseconds per second. */ };