diff options
author | Keith Packard <keithp@keithp.com> | 2010-05-26 07:54:35 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-05-26 07:54:35 -0700 |
commit | 4e9d3e413245e7c01c2ff3c0f130b8967754131b (patch) | |
tree | 401fc96d44a7ff27923207ee59a90b36df55959f /dix/devices.c | |
parent | 531ff40301975519af7b20109c17d296312d3f2b (diff) |
Revert "Add a "flags" field to DeleteInputDeviceRequest."
Peter wants to get a larger patch sequence put together and I didn't
read past the commit message to see the 'don't take this patch
please'.
This reverts commit 531ff40301975519af7b20109c17d296312d3f2b.
Diffstat (limited to 'dix/devices.c')
-rw-r--r-- | dix/devices.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dix/devices.c b/dix/devices.c index 27840240d..cf23bc6d0 100644 --- a/dix/devices.c +++ b/dix/devices.c @@ -891,7 +891,7 @@ CloseDeviceList(DeviceIntPtr *listHead) while (dev != NULL) { freedIds[dev->id] = TRUE; - DeleteInputDeviceRequest(dev, DEVICE_REMOVE_ALL); + DeleteInputDeviceRequest(dev); dev = *listHead; while (dev != NULL && freedIds[dev->id]) |