swayidle: fix stack overflow on sleep

This commit is contained in:
Alex Xu (Hello71) 2018-06-17 13:57:40 -04:00
parent 378697b79d
commit 7ed81cfd36
1 changed files with 2 additions and 1 deletions

View File

@ -127,7 +127,8 @@ void acquire_sleep_lock() {
static int prepare_for_sleep(sd_bus_message *msg, void *userdata,
sd_bus_error *ret_error) {
bool going_down = true;
/* "b" apparently reads into an int, not a bool */
int going_down = 1;
int ret = sd_bus_message_read(msg, "b", &going_down);
if (ret < 0) {
wlr_log(L_ERROR, "Failed to parse D-Bus response for Inhibit: %s",