From 7afb7d6d36a515b9c19227cce11acce381f6b7c8 Mon Sep 17 00:00:00 2001 From: peter Date: Fri, 8 Feb 2002 04:17:33 +0000 Subject: [PATCH] Add missing & --- gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c | 2 +- gnu/usr.bin/binutils/gdb/kvm-fbsd.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c b/gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c index 241b876b5c7..8ee75b5c4ed 100644 --- a/gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c +++ b/gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c @@ -392,7 +392,7 @@ get_kcore_registers (regno) /* find the pcb for the current process */ if (cur_proc == NULL) error ("get_kcore_registers no proc"); - if (kvread (TAILQ_FIRST(&cur_proc->p_threads), &mainthread)) /* XXXKSE */ + if (kvread (&TAILQ_FIRST(&cur_proc->p_threads), &mainthread)) /* XXXKSE */ error ("cannot read main thread for proc at %#x", cur_proc); if (kvread (&mainthread->td_pcb, &pcbaddr)) /* XXXKSE */ error ("cannot read pcb pointer for proc at %#x", cur_proc); diff --git a/gnu/usr.bin/binutils/gdb/kvm-fbsd.c b/gnu/usr.bin/binutils/gdb/kvm-fbsd.c index 241b876b5c7..8ee75b5c4ed 100644 --- a/gnu/usr.bin/binutils/gdb/kvm-fbsd.c +++ b/gnu/usr.bin/binutils/gdb/kvm-fbsd.c @@ -392,7 +392,7 @@ get_kcore_registers (regno) /* find the pcb for the current process */ if (cur_proc == NULL) error ("get_kcore_registers no proc"); - if (kvread (TAILQ_FIRST(&cur_proc->p_threads), &mainthread)) /* XXXKSE */ + if (kvread (&TAILQ_FIRST(&cur_proc->p_threads), &mainthread)) /* XXXKSE */ error ("cannot read main thread for proc at %#x", cur_proc); if (kvread (&mainthread->td_pcb, &pcbaddr)) /* XXXKSE */ error ("cannot read pcb pointer for proc at %#x", cur_proc); -- 2.45.2