From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kevin Buettner To: gdb-patches@sourceware.cygnus.com Subject: [PATCH RFA] Fix for config/nm-linux.h typos Date: Sat, 27 May 2000 20:30:00 -0000 Message-id: <1000528032957.ZM21396@ocotillo.lan> X-SW-Source: 2000-05/msg00425.html As the ChangeLog comment says, this patch merely fixes some typos which cause build problems on IA-32 GNU/Linux. Okay to checkin? * config/nm-linux.h (GDB_GREGSET_T, GDB_FPREGSET_T): Fix typos. Index: config/nm-linux.h =================================================================== RCS file: /cvs/src/src/gdb/config/nm-linux.h,v retrieving revision 1.3 diff -u -p -r1.3 nm-linux.h --- nm-linux.h 2000/05/28 01:12:33 1.3 +++ nm-linux.h 2000/05/28 03:24:42 @@ -59,5 +59,5 @@ extern int linuxthreads_prepare_to_proce /* Use elf_gregset_t and elf_fpregset_t, rather than gregset_t and fpregset_t. */ -#define GDB_GREGSET_T prgregset_t -#define GDB_FPREGSET_T prfpregset_t +#define GDB_GREGSET_T elf_gregset_t +#define GDB_FPREGSET_T elf_fpregset_t