diff options
author | Josh Rahm <rahm@google.com> | 2025-03-14 11:34:10 -0600 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2025-03-14 11:34:10 -0600 |
commit | be1ef8cee5f68eb9afecca94071069a1ff82825e (patch) | |
tree | 4d7106e8976589e23e980dab9aa438602cf50824 /harness/src/plugin.c | |
parent | 8e1542335494a7d0b596544f66c27aa9aff7c505 (diff) | |
download | wetterhorn-dev.tar.gz wetterhorn-dev.tar.bz2 wetterhorn-dev.zip |
Rebrand away from Tinywl to Montis.dev
Diffstat (limited to 'harness/src/plugin.c')
-rw-r--r-- | harness/src/plugin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/harness/src/plugin.c b/harness/src/plugin.c index 38dd0bf..37a6dd3 100644 --- a/harness/src/plugin.c +++ b/harness/src/plugin.c @@ -11,6 +11,7 @@ #include <stdlib.h> #include <string.h> +/* Utility function for showing the marshalled states as hex code */ static void shx(uint8_t *state, uint32_t sz) { uint32_t i = 0; @@ -108,7 +109,7 @@ void do_request_exit(void *plugv, int ec) } static void* plugin_get_seat(void* ctx) { - struct tinywl_server* server = wl_container_of(ctx, server, plugin); + struct montis_server* server = wl_container_of(ctx, server, plugin); return server->seat; } |