sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 51f6718581ab7e21fd7a8d50450586f3969781ab
parent 67985e903188a464e602d04f9ed218bd397f5ab1
Author: Dominique Martinet <asmadeus@codewreck.org>
Date:   Fri,  5 Jan 2018 23:09:26 +0100

swaymsg: convert to wlr_log

Diffstat:
Mswaymsg/main.c | 2+-
Mswaymsg/meson.build | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/swaymsg/main.c b/swaymsg/main.c @@ -232,7 +232,7 @@ int main(int argc, char **argv) { char *socket_path = NULL; char *cmdtype = NULL; - init_log(L_INFO); + wlr_log_init(L_INFO, NULL); static struct option long_options[] = { {"help", no_argument, NULL, 'h'}, diff --git a/swaymsg/meson.build b/swaymsg/meson.build @@ -2,7 +2,7 @@ executable( 'swaymsg', 'main.c', include_directories: [sway_inc], - dependencies: [jsonc], + dependencies: [jsonc, wlroots], link_with: [lib_sway_common], install: true )