From 3586530d815821e8c3acf70925a6d1b488a65e7b Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Wed, 5 Aug 2020 23:33:01 +0200 Subject: libseat: Rename libseat_impl to seat_impl --- libseat/backend/seatd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libseat/backend/seatd.c') 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, -- cgit v1.2.3