Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Jan 2023 08:36:47 GMT
From:      Kristof Provost <kp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: ecdd0b48cbf4 - main - dtrace: remove stray {
Message-ID:  <202301240836.30O8al9x007304@gitrepo.freebsd.org>

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

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

commit ecdd0b48cbf4dd5acc3fc14625de6dc25cf354ce
Author:     Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2023-01-24 07:39:37 +0000
Commit:     Kristof Provost <kp@FreeBSD.org>
CommitDate: 2023-01-24 07:39:37 +0000

    dtrace: remove stray {
    
    Fixes:  da81cc6035f8283b6adda1ef466977e8c1c5389e
    PR:     269128
---
 cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c b/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c
index e11cdc954683..fd770e180b47 100644
--- a/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c
+++ b/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c
@@ -1121,7 +1121,7 @@ dt_vopen(int version, int flags, int *errp,
 		if (modfind("linuxelf") >= 0)
 			kldload("systrace_linux32");
 #else
-		if (modfind("linuxelf") >= 0) {
+		if (modfind("linuxelf") >= 0)
 			kldload("systrace_linux");
 #endif
 		dtfd = open("/dev/dtrace/dtrace", O_RDWR | O_CLOEXEC);



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