diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-03 20:09:11 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-03-03 20:09:11 +0000 |
commit | 7cf5530ea749f274bb984e9a9f2c82e426cca645 (patch) | |
tree | 62f784baf42e7dbd0cb28865539803759827fa79 /src/input/input_pvr.c | |
parent | 6ffb59a745a36b7884e6305c7420e57d87dd894d (diff) | |
download | xine-lib-7cf5530ea749f274bb984e9a9f2c82e426cca645.tar.gz xine-lib-7cf5530ea749f274bb984e9a9f2c82e426cca645.tar.bz2 |
use the _x_abort() macro instead of abort, since it prints some debug info
before aborting
CVS patchset: 6211
CVS date: 2004/03/03 20:09:11
Diffstat (limited to 'src/input/input_pvr.c')
-rw-r--r-- | src/input/input_pvr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/input_pvr.c b/src/input/input_pvr.c index 32a7aa632..fd2117a96 100644 --- a/src/input/input_pvr.c +++ b/src/input/input_pvr.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000-2003 the xine project + * Copyright (C) 2000-2004 the xine project * March 2003 - Miguel Freitas * This plugin was sponsored by 1Control * @@ -38,7 +38,7 @@ * usage: * xine pvr:/<prefix_to_tmp_files>\!<prefix_to_saved_files>\!<max_page_age> * - * $Id: input_pvr.c,v 1.42 2004/02/16 20:19:09 uid86226 Exp $ + * $Id: input_pvr.c,v 1.43 2004/03/03 20:09:12 mroi Exp $ */ /************************************************************************** @@ -1425,7 +1425,7 @@ static int pvr_plugin_open (input_plugin_t *this_gen ) { NULL, pvr_loop, this)) != 0) { xprintf (this->stream->xine, XINE_VERBOSITY_DEBUG, "input_pvr: can't create new thread (%s)\n", strerror(err)); - abort(); + _x_abort(); } return 1; |