gdb/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Fri, 7 May 2010 14:42:30 +0000 (14:42 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Fri, 7 May 2010 14:42:30 +0000 (14:42 +0000)
* fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
sentinel.

gdb/ChangeLog
gdb/fbsd-nat.c

index 582cc15..8a4703e 100644 (file)
@@ -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.
index d150b1e..d499864 100644 (file)
@@ -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);