diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2026-07-15 20:57:44 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2026-07-15 21:02:20 +0000 |
| commit | fed49793ddd197e3dd86c8456b39f569ab74b54c (patch) | |
| tree | de7af9c863236bfa513f13d132756da52d5065f5 | |
| parent | 3abd3d3cf3f034cb3d4250a95a8d6c41e72971ef (diff) | |
kern/sys_process.c: remove extra ()
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
| -rw-r--r-- | sys/kern/sys_process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c index 9fdcf79d0873..e10d1fc4b8be 100644 --- a/sys/kern/sys_process.c +++ b/sys/kern/sys_process.c @@ -1319,7 +1319,7 @@ kern_ptrace(struct thread *td, int req, pid_t pid, void *addr, int data) break; case PT_GET_SC_RET: - if ((td2->td_dbgflags & (TDB_SCX)) == 0 + if ((td2->td_dbgflags & TDB_SCX) == 0 #ifdef COMPAT_FREEBSD32 || (wrap32 && !safe) #endif |
