1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-06-10 14:36:09 +02:00

fix "directive argument is null" errors

This commit is contained in:
Jeff Peeler 2019-03-08 22:06:38 -05:00 committed by Drew DeVault
parent 5fab8a2ad4
commit a73e8f1328
2 changed files with 2 additions and 3 deletions

View File

@ -624,8 +624,8 @@ struct criteria *criteria_parse(char *raw, char **error_arg) {
in_quotes = false;
}
unescape(value);
sway_log(SWAY_DEBUG, "Found pair: %s=%s", name, value);
}
sway_log(SWAY_DEBUG, "Found pair: %s=%s", name, value);
if (!parse_token(criteria, name, value)) {
*error_arg = error;
goto cleanup;

View File

@ -705,8 +705,7 @@ void seat_configure_xcursor(struct sway_seat *seat) {
seat->cursor->xcursor_manager =
wlr_xcursor_manager_create(cursor_theme, 24);
if (sway_assert(seat->cursor->xcursor_manager,
"Cannot create XCursor manager for theme %s",
cursor_theme)) {
"Cannot create XCursor manager for theme")) {
return;
}
}