[PATCH 1/5] fix if() brackets in Probe function
Sascha Hauer
s.hauer at pengutronix.de
Sat Mar 3 05:09:23 PST 2012
in Probe() the indention shows what's meant but there are no
brackets. Add them.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
src/driver.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/src/driver.c b/src/driver.c
index d8bb7b5..2004434 100644
--- a/src/driver.c
+++ b/src/driver.c
@@ -274,7 +274,7 @@ Probe(DriverPtr drv, int flags)
NULL, NULL, NULL, NULL);
}
- if (scrn)
+ if (scrn) {
foundScreen = TRUE;
scrn->driverVersion = 1;
scrn->driverName = "modesetting";
@@ -291,6 +291,7 @@ Probe(DriverPtr drv, int flags)
xf86DrvMsg(scrn->scrnIndex, X_INFO,
"using %s\n", dev ? dev : "default device");
+ }
}
}
--
1.7.9.1
More information about the dri-devel
mailing list