diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2008-05-27 18:43:59 +0000 | 
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2008-05-27 18:43:59 +0000 | 
| commit | c71805ac4bd1bd85d1d0dfc31a200a26d43a9a14 (patch) | |
| tree | ab06a95028f3f258a7da72701fbddce0e3139e3a /input/device.c | |
| parent | 5fa1b91dcd4abdca0aa82b1c4d06bea7067c4562 (diff) | |
Don't forget user data on interface registration
Diffstat (limited to 'input/device.c')
| -rw-r--r-- | input/device.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/input/device.c b/input/device.c index 1a8e0eee..0f06d095 100644 --- a/input/device.c +++ b/input/device.c @@ -912,7 +912,7 @@ static int register_path(DBusConnection *conn, const char *path, struct device *  {  	if (g_dbus_register_interface(conn, path, INPUT_DEVICE_INTERFACE,  					device_methods, device_signals, NULL, -					NULL, device_unregister) == FALSE) { +					idev, device_unregister) == FALSE) {  		error("Failed to register %s interface to %s",  					INPUT_DEVICE_INTERFACE, path);  		return -1; | 
