summaryrefslogtreecommitdiff
path: root/src/raptor_general.c
diff options
context:
space:
mode:
authorLauri Aalto <laalto@iki.fi>2007-09-21 12:05:22 +0000
committerLauri Aalto <laalto@iki.fi>2007-09-21 12:05:22 +0000
commitfe828c9f3073f597c8bcde8672fbda23b13d097f (patch)
treea085074014b7b1ef61d077f00ae8733f882ccd6a /src/raptor_general.c
parent2088a872fc076e5bc20df536f1b5079764374c01 (diff)
downloadraptor-fe828c9f3073f597c8bcde8672fbda23b13d097f.tar.gz
(raptor_log_error) Do not abort() on fatal messages - leave it up to caller to enable resource cleanup.
Diffstat (limited to 'src/raptor_general.c')
-rw-r--r--src/raptor_general.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/raptor_general.c b/src/raptor_general.c
index e5a09c92..0c7c3f7e 100644
--- a/src/raptor_general.c
+++ b/src/raptor_general.c
@@ -925,11 +925,8 @@ raptor_log_error(raptor_log_level level,
fputs(message, stderr);
fputc('\n', stderr);
}
-
- if(level == RAPTOR_LOG_LEVEL_FATAL)
- abort();
}
-
+
/**