From 25e60c9b2cbe9ec7a2944b7de7d27fd5d56706d4 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Wed, 29 Oct 2003 22:47:37 +0000 Subject: [PATCH] * fbsd-proc.c (fbsd_make_corefile_notes): Remove unecessary casts. --- gdb/ChangeLog | 2 ++ gdb/fbsd-proc.c | 23 +++++++---------------- 2 files changed, 9 insertions(+), 16 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3c956067e5d..5a6469e84fc 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2003-10-29 Mark Kettenis + * fbsd-proc.c (fbsd_make_corefile_notes): Remove unecessary casts. + * corelow.c: Include "arch-utils.h", "regset.h" and "gdb_assert.h". (core_gdbarch): New variable. diff --git a/gdb/fbsd-proc.c b/gdb/fbsd-proc.c index 6c47979650a..2c31768250d 100644 --- a/gdb/fbsd-proc.c +++ b/gdb/fbsd-proc.c @@ -129,19 +129,13 @@ fbsd_make_corefile_notes (bfd *obfd, int *note_size) char *note_data = NULL; fill_gregset (&gregs, -1); - note_data = (char *) elfcore_write_prstatus (obfd, - note_data, - note_size, - ptid_get_pid (inferior_ptid), - stop_signal, - &gregs); + note_data = elfcore_write_prstatus (obfd, note_data, note_size, + ptid_get_pid (inferior_ptid), + stop_signal, &gregs); fill_fpregset (&fpregs, -1); - note_data = (char *) elfcore_write_prfpreg (obfd, - note_data, - note_size, - &fpregs, - sizeof (fpregs)); + note_data = elfcore_write_prfpreg (obfd, note_data, note_size, + &fpregs, sizeof (fpregs)); if (get_exec_file (0)) { @@ -151,11 +145,8 @@ fbsd_make_corefile_notes (bfd *obfd, int *note_size) if (get_inferior_args ()) psargs = reconcat (psargs, psargs, " ", get_inferior_args (), NULL); - note_data = (char *) elfcore_write_prpsinfo (obfd, - note_data, - note_size, - fname, - psargs); + note_data = elfcore_write_prpsinfo (obfd, note_data, note_size, + fname, psargs); } make_cleanup (xfree, note_data); -- 2.30.2