diff options
author | Kenny Levinsen <kl@kl.wtf> | 2020-08-05 23:33:01 +0200 |
---|---|---|
committer | Kenny Levinsen <kl@kl.wtf> | 2020-08-05 23:41:55 +0200 |
commit | 3586530d815821e8c3acf70925a6d1b488a65e7b (patch) | |
tree | 749d1d45df3c1cb5d0538f92e2e86739afa732f8 /libseat/backend/logind.c | |
parent | 493cc2a97d8ac32ffc6e96e1cca4d45e15c1828e (diff) |
libseat: Rename libseat_impl to seat_impl
Diffstat (limited to 'libseat/backend/logind.c')
-rw-r--r-- | libseat/backend/logind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libseat/backend/logind.c b/libseat/backend/logind.c index 492d319..7224508 100644 --- a/libseat/backend/logind.c +++ b/libseat/backend/logind.c @@ -44,7 +44,7 @@ struct backend_logind { int has_drm; }; -const struct libseat_impl logind_impl; +const struct seat_impl logind_impl; static struct backend_logind *backend_logind_from_libseat_backend(struct libseat *base); static void destroy(struct backend_logind *backend) { @@ -768,7 +768,7 @@ error: return NULL; } -const struct libseat_impl logind_impl = { +const struct seat_impl logind_impl = { .open_seat = logind_open_seat, .disable_seat = disable_seat, .close_seat = close_seat, |