aboutsummaryrefslogtreecommitdiffstats
path: root/swaymsg
diff options
context:
space:
mode:
authorLibravatar Dominique Martinet <asmadeus@codewreck.org>2018-01-05 23:09:26 +0100
committerLibravatar Dominique Martinet <asmadeus@codewreck.org>2018-01-05 23:40:09 +0100
commit51f6718581ab7e21fd7a8d50450586f3969781ab (patch)
tree42d6239cb64bb67640ff6a9cd14a07ce38d95ec3 /swaymsg
parentsway: change all sway_log to wlr_log (diff)
downloadsway-51f6718581ab7e21fd7a8d50450586f3969781ab.tar.gz
sway-51f6718581ab7e21fd7a8d50450586f3969781ab.tar.zst
sway-51f6718581ab7e21fd7a8d50450586f3969781ab.zip
swaymsg: convert to wlr_log
Diffstat (limited to 'swaymsg')
-rw-r--r--swaymsg/main.c2
-rw-r--r--swaymsg/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c
index a34eced4..88b14813 100644
--- a/swaymsg/main.c
+++ b/swaymsg/main.c
@@ -232,7 +232,7 @@ int main(int argc, char **argv) {
232 char *socket_path = NULL; 232 char *socket_path = NULL;
233 char *cmdtype = NULL; 233 char *cmdtype = NULL;
234 234
235 init_log(L_INFO); 235 wlr_log_init(L_INFO, NULL);
236 236
237 static struct option long_options[] = { 237 static struct option long_options[] = {
238 {"help", no_argument, NULL, 'h'}, 238 {"help", no_argument, NULL, 'h'},
diff --git a/swaymsg/meson.build b/swaymsg/meson.build
index 2d678878..8638b838 100644
--- a/swaymsg/meson.build
+++ b/swaymsg/meson.build
@@ -2,7 +2,7 @@ executable(
2 'swaymsg', 2 'swaymsg',
3 'main.c', 3 'main.c',
4 include_directories: [sway_inc], 4 include_directories: [sway_inc],
5 dependencies: [jsonc], 5 dependencies: [jsonc, wlroots],
6 link_with: [lib_sway_common], 6 link_with: [lib_sway_common],
7 install: true 7 install: true
8) 8)