aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/nghttp2/lib/nghttp2_time.c
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2024-11-05 20:55:43 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2024-11-05 21:18:43 +0300
commita2ef9486e8206b470a4fa9dfe6dad811912f20f5 (patch)
treec1e8422b3e61b968469b59ab35f03749b8f97bff /contrib/libs/nghttp2/lib/nghttp2_time.c
parent53d062eb060f7267f7d54d8f4aeaa5f408441bf8 (diff)
downloadydb-a2ef9486e8206b470a4fa9dfe6dad811912f20f5.tar.gz
Update contrib/libs/nghttp2 to 1.64.0
commit_hash:229e82d21a5e93c864b79c5d00a5ce331f8ab3ef
Diffstat (limited to 'contrib/libs/nghttp2/lib/nghttp2_time.c')
-rw-r--r--contrib/libs/nghttp2/lib/nghttp2_time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/nghttp2/lib/nghttp2_time.c b/contrib/libs/nghttp2/lib/nghttp2_time.c
index 947b5449e5..148ccfdce8 100644
--- a/contrib/libs/nghttp2/lib/nghttp2_time.c
+++ b/contrib/libs/nghttp2/lib/nghttp2_time.c
@@ -45,7 +45,7 @@ static uint64_t time_now_sec(void) {
#if defined(HAVE_GETTICKCOUNT64) && !defined(__CYGWIN__)
uint64_t nghttp2_time_now_sec(void) { return GetTickCount64() / 1000; }
#elif defined(HAVE_CLOCK_GETTIME) && defined(HAVE_DECL_CLOCK_MONOTONIC) && \
- HAVE_DECL_CLOCK_MONOTONIC
+ HAVE_DECL_CLOCK_MONOTONIC
uint64_t nghttp2_time_now_sec(void) {
struct timespec tp;
int rv = clock_gettime(CLOCK_MONOTONIC, &tp);