aboutsummaryrefslogtreecommitdiff
path: root/libseat/backend/seatd.c
diff options
context:
space:
mode:
authorKenny Levinsen <kl@kl.wtf>2020-08-05 23:33:01 +0200
committerKenny Levinsen <kl@kl.wtf>2020-08-05 23:41:55 +0200
commit3586530d815821e8c3acf70925a6d1b488a65e7b (patch)
tree749d1d45df3c1cb5d0538f92e2e86739afa732f8 /libseat/backend/seatd.c
parent493cc2a97d8ac32ffc6e96e1cca4d45e15c1828e (diff)
libseat: Rename libseat_impl to seat_impl
Diffstat (limited to 'libseat/backend/seatd.c')
-rw-r--r--libseat/backend/seatd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libseat/backend/seatd.c b/libseat/backend/seatd.c
index a81898c..7b0b411 100644
--- a/libseat/backend/seatd.c
+++ b/libseat/backend/seatd.c
@@ -22,8 +22,8 @@
#include "server.h"
#endif
-const struct libseat_impl seatd_impl;
-const struct libseat_impl builtin_impl;
+const struct seat_impl seatd_impl;
+const struct seat_impl builtin_impl;
struct pending_event {
struct linked_list link; // backend_seat::link
@@ -495,7 +495,7 @@ static int disable_seat(struct libseat *base) {
return 0;
}
-const struct libseat_impl seatd_impl = {
+const struct seat_impl seatd_impl = {
.open_seat = open_seat,
.disable_seat = disable_seat,
.close_seat = close_seat,
@@ -569,7 +569,7 @@ static struct libseat *builtin_open_seat(struct libseat_seat_listener *listener,
}
}
-const struct libseat_impl builtin_impl = {
+const struct seat_impl builtin_impl = {
.open_seat = builtin_open_seat,
.disable_seat = disable_seat,
.close_seat = close_seat,