summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Brace <kevinbrace@gmx.com>2018-12-17 15:07:55 -0600
committerKevin Brace <kevinbrace@gmx.com>2018-12-17 15:07:55 -0600
commit301cefae671cb2a4f25b068b0ef2ea9331ae17f3 (patch)
tree667fac3f210532db918928b9b2cd3e0f08c87aa4
parent940eed5b73b28d3067b025e583ebf257cdd4603f (diff)
Suppress logical operation and parenthesis related compilation warnings
Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
-rw-r--r--src/sis_cursor.c2
-rw-r--r--src/sis_utility.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/sis_cursor.c b/src/sis_cursor.c
index 32dcd9d..76a04b4 100644
--- a/src/sis_cursor.c
+++ b/src/sis_cursor.c
@@ -759,7 +759,7 @@ SiS300LoadCursorImage(ScrnInfoPtr pScrn, UChar *src)
}
if(pSiS->VBFlags & CRT2_ENABLE) {
- if((pSiS->UseHWARGBCursor) && (!pSiS->VBFlags & DISPTYPE_CRT1)) {
+ if((pSiS->UseHWARGBCursor) && (!(pSiS->VBFlags & DISPTYPE_CRT1))) {
status2 = sis301GetCursorStatus;
sis301DisableHWCursor()
SISWaitRetraceCRT2(pScrn);
diff --git a/src/sis_utility.c b/src/sis_utility.c
index 80bd672..c86bdbe 100644
--- a/src/sis_utility.c
+++ b/src/sis_utility.c
@@ -523,7 +523,7 @@ SISSwitchCRT2Type(ScrnInfoPtr pScrn, ULong newvbflags, Bool quiet)
}
#endif
- if((!(newvbflags & CRT2_ENABLE)) && (!newvbflags & DISPTYPE_CRT1)) {
+ if((!(newvbflags & CRT2_ENABLE)) && (!(newvbflags & DISPTYPE_CRT1))) {
if(!quiet) {
xf86DrvMsg(pScrn->scrnIndex, X_ERROR,
"CRT2 can't be switched off while CRT1 is off\n");