git: ecdd0b48cbf4 - main - dtrace: remove stray {

From: Kristof Provost <kp_at_FreeBSD.org>
Date: Tue, 24 Jan 2023 08:36:47 UTC
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);