diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-11-11 10:59:04 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-11-11 10:59:04 -0500 |
commit | 1db3b5512821b1d6f936897f598e0f4d12233e8e (patch) | |
tree | 91934f99e2bcfa9abb93ab609990886e8e05a071 /rootston/input.c | |
parent | 18079e234a9fb8ee3ee8686cf3e28d5920326a4a (diff) |
rootston: prefix config structs and functions
Diffstat (limited to 'rootston/input.c')
-rw-r--r-- | rootston/input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rootston/input.c b/rootston/input.c index e96565e0..35a5af97 100644 --- a/rootston/input.c +++ b/rootston/input.c @@ -44,7 +44,8 @@ static void input_add_notify(struct wl_listener *listener, void *data) { struct roots_input *input = wl_container_of(listener, input, input_add); char *seat_name = "seat0"; - struct device_config *dc = config_get_device(input->config, device); + struct roots_device_config *dc = + roots_config_get_device(input->config, device); if (dc) { seat_name = dc->seat; } |