From 89f628394f7d831f2ba1e45c5884c3983bef6031 Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Wed, 1 Aug 2007 02:08:02 +0300 Subject: [PATCH] XFree86: Input: Fix whitespace --- hw/xfree86/common/xf86Xinput.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/xfree86/common/xf86Xinput.c b/hw/xfree86/common/xf86Xinput.c index f8feeef64..dca4e3287 100644 --- a/hw/xfree86/common/xf86Xinput.c +++ b/hw/xfree86/common/xf86Xinput.c @@ -338,7 +338,7 @@ NewInputDeviceRequest (InputOption *options, DeviceIntPtr *pdev) * test if the module is already loaded first */ drv = xf86LookupInputDriver(option->value); if (!drv) - if(xf86LoadOneModule(option->value, NULL)) + if (xf86LoadOneModule(option->value, NULL)) drv = xf86LookupInputDriver(option->value); if (!drv) { xf86Msg(X_ERROR, "No input driver matching `%s'\n", @@ -365,7 +365,7 @@ NewInputDeviceRequest (InputOption *options, DeviceIntPtr *pdev) } } } - if(!idev->driver || !idev->identifier) { + if (!idev->driver || !idev->identifier) { xf86Msg(X_ERROR, "No input driver/identifier specified (ignoring)\n"); rval = BadRequest; goto unwind;