From 1c8c5b77f172af6d39e89fdb2f4f065bd4af0b7b Mon Sep 17 00:00:00 2001 From: Tony Wasserka Date: Thu, 23 Jan 2025 17:30:26 +0100 Subject: [PATCH] Library Forwarding/wayland: Fix regression caused by erroneous format Auto-formatting turned this into "libwayland - client", making FEX fail to load the host-side equivalent of this library. --- ThunkLibs/libwayland-client/Guest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ThunkLibs/libwayland-client/Guest.cpp b/ThunkLibs/libwayland-client/Guest.cpp index e15a3df4a7..17ad5e5e65 100644 --- a/ThunkLibs/libwayland-client/Guest.cpp +++ b/ThunkLibs/libwayland-client/Guest.cpp @@ -337,4 +337,5 @@ void OnInit() { fex_wl_exchange_interface_pointer(const_cast(&wl_callback_interface), "wl_callback_interface"); } -LOAD_LIB_INIT(libwayland - client, OnInit) +// clang-format off: Would insert spaces around - +LOAD_LIB_INIT(libwayland-client, OnInit)