exa: exaOpReadsDestination(): Updated switch case formatting and reverted the use of tabs for indentation

This commit is contained in:
RotaryBoot58
2025-08-16 23:28:45 -03:00
committed by Enrico Weigelt
parent a324351f67
commit 8574eecaa5

View File

@@ -128,12 +128,13 @@ exaOpReadsDestination(CARD8 op)
* That's just Clear and Src. ReduceCompositeOp() will already have
* converted con/disjoint clear/src to Clear or Src.
*/
switch (op) {
case PictOpClear:
case PictOpSrc:
return FALSE;
default:
return TRUE;
switch(op)
{
case PictOpClear:
case PictOpSrc:
return FALSE;
default:
return TRUE;
}
}