Skip to content
Snippets Groups Projects
Commit 117d9af6 authored by Martin Stjernholm's avatar Martin Stjernholm
Browse files

Fixed a mistake.

Rev: src/error.c:1.50
parent 87c7f91f
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include "threads.h" #include "threads.h"
#include "gc.h" #include "gc.h"
RCSID("$Id: error.c,v 1.49 2000/04/17 21:06:24 hubbe Exp $"); RCSID("$Id: error.c,v 1.50 2000/04/19 21:26:19 mast Exp $");
#undef ATTRIBUTE #undef ATTRIBUTE
#define ATTRIBUTE(X) #define ATTRIBUTE(X)
...@@ -295,7 +295,7 @@ void debug_fatal(const char *fmt, ...) ATTRIBUTE((noreturn,format (printf, 1, 2) ...@@ -295,7 +295,7 @@ void debug_fatal(const char *fmt, ...) ATTRIBUTE((noreturn,format (printf, 1, 2)
(void)VFPRINTF(stderr, fmt, args); (void)VFPRINTF(stderr, fmt, args);
d_flag=t_flag=0; d_flag=t_flag=0;
if(!Pike_sp) if(Pike_sp && evaluator_stack)
{ {
fprintf(stderr,"Attempting to dump backlog (may fail)...\n"); fprintf(stderr,"Attempting to dump backlog (may fail)...\n");
push_error("Backtrace at time of fatal:\n"); push_error("Backtrace at time of fatal:\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment