diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-05-07 14:42:30 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-05-07 14:42:30 +0000 |
commit | 3f1f688424574eaba15256ec436b564a8e2e8c20 (patch) | |
tree | 3df2d0deab999ce00657bc26633cddd5f72402ae | |
parent | 94b0dee14131cfc1d6aef4690eab720e117f44e7 (diff) | |
download | gdb-3f1f688424574eaba15256ec436b564a8e2e8c20.zip gdb-3f1f688424574eaba15256ec436b564a8e2e8c20.tar.gz gdb-3f1f688424574eaba15256ec436b564a8e2e8c20.tar.bz2 |
gdb/
* fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
sentinel.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/fbsd-nat.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 582cc15..8a4703e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2010-05-07 Jan Kratochvil <jan.kratochvil@redhat.com> + + * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as + sentinel. + 2010-05-07 Pedro Alves <pedro@codesourcery.com> * remote.c (remote_query_supported_append): Use reconcat. diff --git a/gdb/fbsd-nat.c b/gdb/fbsd-nat.c index d150b1e..d499864 100644 --- a/gdb/fbsd-nat.c +++ b/gdb/fbsd-nat.c @@ -208,7 +208,8 @@ fbsd_make_corefile_notes (bfd *obfd, int *note_size) char *psargs = xstrdup (fname); if (get_inferior_args ()) - psargs = reconcat (psargs, psargs, " ", get_inferior_args (), NULL); + psargs = reconcat (psargs, psargs, " ", get_inferior_args (), + (char *) NULL); note_data = elfcore_write_prpsinfo (obfd, note_data, note_size, fname, psargs); |