summaryrefslogtreecommitdiffstats
path: root/lib/libmytinfo/terminfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libmytinfo/terminfo.c')
-rw-r--r--lib/libmytinfo/terminfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libmytinfo/terminfo.c b/lib/libmytinfo/terminfo.c
index 342e08f..0568588 100644
--- a/lib/libmytinfo/terminfo.c
+++ b/lib/libmytinfo/terminfo.c
@@ -52,7 +52,7 @@ int *err; {
char buf[MAX_BUF];
- if (term == NULL)
+ if (term == NULL)
term = getenv("TERM");
if (term == NULL)
RETERR(0, "TERM not set\n")
@@ -99,7 +99,7 @@ int *err; {
_term_buf.fd = fd;
if (_init_tty() == ERR)
RETERR(0, "problem initializing tty\n");
- if ((s = getenv("LINES")) != NULL && atoi(s) > 0)
+ if ((s = getenv("LINES")) != NULL && atoi(s) > 0)
lines = atoi(s);
if ((s = getenv("COLUMNS")) != NULL && atoi(s) > 0)
columns = atoi(s);
OpenPOWER on IntegriCloud