This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch] cleanup: Wunused corefile.c


On Friday, February 01 2013, Aleksandar Ristovski wrote:

> Index: gdb/corefile.c
> ===================================================================
> RCS file: /cvs/src/src/gdb/corefile.c,v
> retrieving revision 1.71
> diff -u -p -r1.71 corefile.c
> --- gdb/corefile.c      14 Jan 2013 21:03:54 -0000      1.71
> +++ gdb/corefile.c      1 Feb 2013 21:48:42 -0000
> @@ -149,7 +149,11 @@ reopen_exec_file (void)
>    cleanups = make_cleanup (xfree, filename);
>    res = stat (filename, &st);
>
> -  if (exec_bfd_mtime && exec_bfd_mtime != st.st_mtime)
> +  if (res != 0 && info_verbose)
> +    warning (_("File %s could not be stat-ed (%s)\n"), filename,
> +            strerror (errno));

Thanks for that.  GDB uses `safe_strerror' instead of `strerror'.

-- 
Sergio


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]