diff options
Diffstat (limited to 'lib/libcurses/base/lib_restart.c')
-rw-r--r-- | lib/libcurses/base/lib_restart.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libcurses/base/lib_restart.c b/lib/libcurses/base/lib_restart.c index fb37b368ebd..8f2ae3f91fc 100644 --- a/lib/libcurses/base/lib_restart.c +++ b/lib/libcurses/base/lib_restart.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lib_restart.c,v 1.1 1999/01/18 19:09:57 millert Exp $ */ +/* $OpenBSD: lib_restart.c,v 1.2 1999/08/15 11:40:55 millert Exp $ */ /**************************************************************************** * Copyright (c) 1998 Free Software Foundation, Inc. * @@ -49,18 +49,18 @@ #include <term.h> /* lines, columns, cur_term */ -MODULE_ID("$From: lib_restart.c,v 1.1 1998/12/27 14:40:04 tom Exp $") +MODULE_ID("$From: lib_restart.c,v 1.2 1999/07/24 20:10:04 tom Exp $") -int restartterm(NCURSES_CONST char *term, int filenum, int *errret) +int restartterm(NCURSES_CONST char *termp, int filenum, int *errret) { int saveecho = SP->_echo; int savecbreak = SP->_cbreak; int saveraw = SP->_raw; int savenl = SP->_nl; - T((T_CALLED("restartterm(%s,%d,%p)"), term, filenum, errret)); + T((T_CALLED("restartterm(%s,%d,%p)"), termp, filenum, errret)); - setupterm(term, filenum, errret); + setupterm(termp, filenum, errret); if (saveecho) echo(); |