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/libseat.c | |
parent | 493cc2a97d8ac32ffc6e96e1cca4d45e15c1828e (diff) |
libseat: Rename libseat_impl to seat_impl
Diffstat (limited to 'libseat/libseat.c')
-rw-r--r-- | libseat/libseat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libseat/libseat.c b/libseat/libseat.c index 3489385..121a3b0 100644 --- a/libseat/libseat.c +++ b/libseat/libseat.c @@ -10,9 +10,9 @@ #include "libseat.h" #include "log.h" -extern const struct libseat_impl seatd_impl; -extern const struct libseat_impl logind_impl; -extern const struct libseat_impl builtin_impl; +extern const struct seat_impl seatd_impl; +extern const struct seat_impl logind_impl; +extern const struct seat_impl builtin_impl; static const struct named_backend impls[] = { #ifdef SEATD_ENABLED |