Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Mar 2025 00:55:25 GMT
From:      Stephen Hurd <shurd@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: d7efac1be144 - main - Add missing ||
Message-ID:  <202503200055.52K0tP4u023590@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by shurd:

URL: https://cgit.FreeBSD.org/src/commit/?id=d7efac1be1441c122f7fb9de51a409172f21326c

commit d7efac1be1441c122f7fb9de51a409172f21326c
Author:     Stephen Hurd <shurd@FreeBSD.org>
AuthorDate: 2025-03-20 00:54:46 +0000
Commit:     Stephen Hurd <shurd@FreeBSD.org>
CommitDate: 2025-03-20 00:55:13 +0000

    Add missing ||
    
    Fixes:  9d0eea9422
---
 include/time.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/time.h b/include/time.h
index f85d9c40715a..e011792aaaeb 100644
--- a/include/time.h
+++ b/include/time.h
@@ -180,7 +180,7 @@ time_t posix2time(time_t t);
 #include <xlocale/_time.h>
 #endif
 
-#if __ISO_C_VISIBLE >= 2011 || __POSIX_VISIBLE >= 202405 \
+#if __ISO_C_VISIBLE >= 2011 || __POSIX_VISIBLE >= 202405 || \
     (defined(__cplusplus) && __cplusplus >= 201703)
 #include <sys/_timespec.h>
 /* ISO/IEC 9899:2011 7.27.2.5 The timespec_get function */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202503200055.52K0tP4u023590>