aboutsummaryrefslogtreecommitdiffstats
path: root/swaymsg
diff options
context:
space:
mode:
Diffstat (limited to 'swaymsg')
-rw-r--r--swaymsg/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c
index e5eee631..2b49f9b9 100644
--- a/swaymsg/main.c
+++ b/swaymsg/main.c
@@ -317,7 +317,7 @@ int main(int argc, char **argv) {
317 char *socket_path = NULL; 317 char *socket_path = NULL;
318 char *cmdtype = NULL; 318 char *cmdtype = NULL;
319 319
320 wlr_log_init(WLR_INFO, NULL); 320 sway_log_init(SWAY_INFO, NULL);
321 321
322 static struct option long_options[] = { 322 static struct option long_options[] = {
323 {"help", no_argument, NULL, 'h'}, 323 {"help", no_argument, NULL, 'h'},
@@ -421,7 +421,7 @@ int main(int argc, char **argv) {
421 free(cmdtype); 421 free(cmdtype);
422 422
423 if (monitor && type != IPC_SUBSCRIBE) { 423 if (monitor && type != IPC_SUBSCRIBE) {
424 wlr_log(WLR_ERROR, "Monitor can only be used with -t SUBSCRIBE"); 424 sway_log(SWAY_ERROR, "Monitor can only be used with -t SUBSCRIBE");
425 free(socket_path); 425 free(socket_path);
426 return 1; 426 return 1;
427 } 427 }