diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2017-08-05 17:12:41 -0700 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2017-08-05 17:12:41 -0700 |
commit | 5e90221dc68ae0893acd5c9b12d702269202558d (patch) | |
tree | 4d32339d21dde1c964a8e546c6b4dcac09ed42a6 /src | |
parent | 7957ad83b53b57f376164b10742d4e35223c9dcc (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>
Diffstat (limited to 'src')
-rw-r--r-- | src/dummy_driver.c | 2 |
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 |