Re: Disappearing breakpoints

From: Mark Russell (M.T.Russell_at_ukc.ac.uk)
Date: Wed Oct 07 1998 - 15:40:06 BST


>
>  if (unlink(get_temp_bpt_filename()) != 0)
>    errf("Can't unlink `%s'", get_temp_bpt_filename());

This is a side issue, but all the errf() calls would be better
written:

	errf("Can't unlink `%s': %m", get_temp_bpt_filename());

... so that you get told *why* the unlink failed.  I know this is
off-topic, but programs that tell you that something failed without
saying why are a pet peeve of mine.

Mark (a former ups hacker)


This archive was generated by hypermail 2.1.4 : Wed Feb 13 2002 - 21:51:32 GMT