dtrace: remove stray {

Fixes:	da81cc6035
PR:	269128
This commit is contained in:
Kristof Provost 2023-01-24 08:39:37 +01:00
parent cd80c52cad
commit ecdd0b48cb

View file

@ -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);