aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorLibravatar Jeff Peeler <jpeeler@gmail.com>2019-03-08 22:06:38 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-03-09 14:59:28 -0700
commita73e8f1328a247766f4ff78fdc73b38488dec385 (patch)
tree63476eea176095fa02c65f040c831390316825ce /sway/input/seat.c
parentFix crash when moving window to scratchpad (diff)
downloadsway-a73e8f1328a247766f4ff78fdc73b38488dec385.tar.gz
sway-a73e8f1328a247766f4ff78fdc73b38488dec385.tar.zst
sway-a73e8f1328a247766f4ff78fdc73b38488dec385.zip
fix "directive argument is null" errors
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 9888ddfc..245326a1 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -705,8 +705,7 @@ void seat_configure_xcursor(struct sway_seat *seat) {
705 seat->cursor->xcursor_manager = 705 seat->cursor->xcursor_manager =
706 wlr_xcursor_manager_create(cursor_theme, 24); 706 wlr_xcursor_manager_create(cursor_theme, 24);
707 if (sway_assert(seat->cursor->xcursor_manager, 707 if (sway_assert(seat->cursor->xcursor_manager,
708 "Cannot create XCursor manager for theme %s", 708 "Cannot create XCursor manager for theme")) {
709 cursor_theme)) {
710 return; 709 return;
711 } 710 }
712 } 711 }