summaryrefslogtreecommitdiffstats
path: root/libvo/vo_aa.c
diff options
context:
space:
mode:
authorfolke <folke@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-14 19:23:17 +0000
committerfolke <folke@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-08-14 19:23:17 +0000
commitbaa44960ad2a428277eb210345d362ad324a198c (patch)
treebdafdb64e5043cbd6ce4630ac0c04a2d2ad32be6 /libvo/vo_aa.c
parenta12e06f9da8cee6c495e2d5a4f557348d6dca8f5 (diff)
downloadmpv-baa44960ad2a428277eb210345d362ad324a198c.tar.bz2
mpv-baa44960ad2a428277eb210345d362ad324a198c.tar.xz
write fault error fixed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1521 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_aa.c')
-rw-r--r--libvo/vo_aa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_aa.c b/libvo/vo_aa.c
index f3be9b7c52..18da299eda 100644
--- a/libvo/vo_aa.c
+++ b/libvo/vo_aa.c
@@ -238,7 +238,7 @@ init(uint32_t width, uint32_t height, uint32_t d_width,
aa_hidecursor(c);
p = aa_getrenderparams();
- if ((strstr(c->driver->name,"curses")) || (strstr(c->driver->name,"linux"))){
+ if ((strstr(c->driver->name,"Curses")) || (strstr(c->driver->name,"Linux"))){
freopen("/dev/null", "w", stderr);
quiet=1; /* disable mplayer outputs */
}
@@ -527,7 +527,7 @@ uninit(void) {
free(stx);
free(sty);
if (convertbuf!=NULL) free(convertbuf);
- if (strstr(c->driver->name,"curses") || strstr(c->driver->name,"libux")){
+ if (strstr(c->driver->name,"Curses") || strstr(c->driver->name,"Linux")){
freopen("/dev/tty", "w", stderr);
quiet=0; /* enable mplayer outputs */
}