2003-07-30
2003-07-30 19:05:37 by Martin Stjernholm <mast@lysator.liu.se>
-
2624d2a7cae5f912f9fe8274f4876f69e4af4e2b
(11 lines)
(+7/-4)
[
Show
| Annotate
]
Branch: 7.9
Fixed a pike-ism.
Rev: src/error.c:1.112
2:
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
- || $Id: error.c,v 1.111 2003/07/30 16:30:55 mast Exp $
+ || $Id: error.c,v 1.112 2003/07/30 19:05:37 mast Exp $
*/
#define NO_PIKE_SHORTHAND
23:
#include "threads.h"
#include "gc.h"
- RCSID("$Id: error.c,v 1.111 2003/07/30 16:30:55 mast Exp $");
+ RCSID("$Id: error.c,v 1.112 2003/07/30 19:05:37 mast Exp $");
#undef ATTRIBUTE
#define ATTRIBUTE(X)
257: Inside #if defined(PIKE_DEBUG)
{
#ifdef PIKE_DEBUG
if (d_flag) {
- fprintf(stderr,"No error recovery context!\n%s():%s",name || "<unknown>",text);
+ fprintf(stderr,"No error recovery context!\n%s():%s",
+ name ? name : "<unknown>", text);
dump_backlog();
}
#endif
- fprintf(stderr,"No error recovery context!\n%s():%s",name || "<unknown>",text);
+ fprintf(stderr,"No error recovery context!\n%s():%s",
+ name ? name : "<unknown>", text);
if(file)
fprintf(stderr,"at %s:%d\n",file,line);
exit(99);