summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--osdep/vbelib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/osdep/vbelib.c b/osdep/vbelib.c
index 5ca5b3c59b..9eebcef352 100644
--- a/osdep/vbelib.c
+++ b/osdep/vbelib.c
@@ -111,8 +111,8 @@ static void hide_terminal_output( void )
my_stderr = fopen(ttyname(fileno(stderr)),"w");
__set_cursor_type(stdout,0);
/*if(isatty(fileno(stdin ))) stdin =freopen("/dev/null","r",stdin );*/
- if(isatty(fileno(stdout))) stdout=freopen("/dev/null","w",stdout);
- if(isatty(fileno(stderr))) stderr=freopen("/dev/null","w",stderr);
+ if(isatty(fileno(stdout))) freopen("/dev/null","w",stdout);
+ if(isatty(fileno(stderr))) freopen("/dev/null","w",stderr);
}
static unsigned hh_int_10_seg;