From 52698b0c75eb1583922fbe1bf2714d9428bbe169 Mon Sep 17 00:00:00 2001 From: Futaura Date: Tue, 22 Oct 2024 19:26:58 +0100 Subject: [PATCH] Fixed typo in ossl_ticks2time() --- openssl/include/internal/time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssl/include/internal/time.h b/openssl/include/internal/time.h index 2fd1c3d06..dbdefc170 100644 --- a/openssl/include/internal/time.h +++ b/openssl/include/internal/time.h @@ -66,7 +66,7 @@ OSSL_TIME ossl_ticks2time(uint64_t ticks) OSSL_TIME r; r = ticks; - return ticks; + return r; } /* Convert a time to a tick count */