From 3f1f688424574eaba15256ec436b564a8e2e8c20 Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Fri, 7 May 2010 14:42:30 +0000 Subject: gdb/ * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as sentinel. --- gdb/fbsd-nat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdb/fbsd-nat.c') 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); -- cgit v1.1