summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2017-08-05 17:12:41 -0700
committerAaron Plattner <aplattner@nvidia.com>2017-08-05 17:12:41 -0700
commit5e90221dc68ae0893acd5c9b12d702269202558d (patch)
tree4d32339d21dde1c964a8e546c6b4dcac09ed42a6
parent7957ad83b53b57f376164b10742d4e35223c9dcc (diff)
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>
-rw-r--r--src/dummy_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dummy_driver.c b/src/dummy_driver.c
index c093f77..d4ac869 100644
--- a/src/dummy_driver.c
+++ b/src/dummy_driver.c
@@ -180,7 +180,7 @@ DUMMYGetRec(ScrnInfoPtr pScrn)
if (pScrn->driverPrivate == NULL)
return FALSE;
- return TRUE;
+ return TRUE;
}
static void