diff options
author | jkh <jkh@FreeBSD.org> | 1996-07-12 18:57:58 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-07-12 18:57:58 +0000 |
commit | c4d4a99d31762beef936f34571330923e9300da9 (patch) | |
tree | c116431af8e1f042b25e0f70c63c437cf7ff8d63 /lib/libcurses/setterm.c | |
parent | 6657f01bfd009bbf4ec0481a17712259abf8ea77 (diff) | |
download | FreeBSD-src-c4d4a99d31762beef936f34571330923e9300da9.zip FreeBSD-src-c4d4a99d31762beef936f34571330923e9300da9.tar.gz |
General -Wall warning cleanup, part I.
Submitted-By: Kent Vander Velden <graphix@iastate.edu>
Diffstat (limited to 'lib/libcurses/setterm.c')
-rw-r--r-- | lib/libcurses/setterm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcurses/setterm.c b/lib/libcurses/setterm.c index 14ce6ee..252c599 100644 --- a/lib/libcurses/setterm.c +++ b/lib/libcurses/setterm.c @@ -156,13 +156,13 @@ setterm(type) ttytype = longname(genbuf, __ttytype); __usecs = - (AL == NULL && al == NULL || DL == NULL && dl == NULL) && - !NS && (SC != NULL && RC != NULL || HO != NULL) && + ((AL == NULL && al == NULL) || (DL == NULL && dl == NULL)) && + !NS && ((SC != NULL && RC != NULL) || HO != NULL) && CS != NULL && (SR != NULL || sr != NULL); /* If no scrolling commands, no quick change. */ __noqch = !__usecs && - (AL == NULL && al == NULL || DL == NULL && dl == NULL); + ((AL == NULL && al == NULL) || (DL == NULL && dl == NULL)); return (unknown ? ERR : OK); } |