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:
Aaron Plattner 2017-08-05 17:12:41 -07:00
parent 7957ad83b5
commit 5e90221dc6
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ DUMMYGetRec(ScrnInfoPtr pScrn)
if (pScrn->driverPrivate == NULL)
return FALSE;
return TRUE;
return TRUE;
}
static void