summaryrefslogtreecommitdiffstats
path: root/libvo/vo_vesa.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-31 18:33:02 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-08-31 18:33:02 +0000
commit1450231f23142e0980f7bf5beb96a94fd3b38e2d (patch)
tree832f16a2a8e03270e097888c23bfa9fe59353ea1 /libvo/vo_vesa.c
parent3eec29218ff104749db93dc8da4d22086a5d913f (diff)
downloadmpv-1450231f23142e0980f7bf5beb96a94fd3b38e2d.tar.bz2
mpv-1450231f23142e0980f7bf5beb96a94fd3b38e2d.tar.xz
remove exit_player and exit references
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10735 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_vesa.c')
-rw-r--r--libvo/vo_vesa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_vesa.c b/libvo/vo_vesa.c
index 8b68e38635..8b7ad638a3 100644
--- a/libvo/vo_vesa.c
+++ b/libvo/vo_vesa.c
@@ -185,7 +185,7 @@ static inline void __vbeSwitchBank(unsigned long offset)
vesa_term();
PRINT_VBE_ERR("vbeSetWindow",err);
printf("vo_vesa: Fatal error occured! Can't continue\n");
- exit(-1);
+ abort();
}
win.low = new_offset * gran;
win.high = win.low + video_mode_info.WinSize*1024;
@@ -387,7 +387,7 @@ static void flip_page(void)
vesa_term();
PRINT_VBE_ERR("vbeSetDisplayStart",err);
printf("vo_vesa: Fatal error occured! Can't continue\n");
- exit(EXIT_FAILURE);
+ abort();
}
multi_idx = multi_idx ? 0 : 1;
win.ptr = dga_buffer = video_base + multi_buff[multi_idx];