DUMMYGetRec: Fix misleading indentation
GCC's -Wmisleading-indentation complains about this dummy_driver.c: In function ‘DUMMYGetRec’: dummy_driver.c:181:5: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation] if (pScrn->driverPrivate == NULL) ^~ dummy_driver.c:183:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’ return TRUE; ^~~~~~ Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
This commit is contained in:
parent
7957ad83b5
commit
5e90221dc6
@ -180,7 +180,7 @@ DUMMYGetRec(ScrnInfoPtr pScrn)
|
|||||||
|
|
||||||
if (pScrn->driverPrivate == NULL)
|
if (pScrn->driverPrivate == NULL)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Loading…
Reference in New Issue
Block a user