fix for runtime autostart

This commit is contained in:
Tobias Berger 2024-01-27 14:44:36 +01:00
parent cdeb338240
commit 3d28d91ca4
Signed by: toby
GPG key ID: 2D05EFAB764D6A88

2
dwl.c
View file

@ -2839,6 +2839,8 @@ main(int argc, char *argv[])
else if (c == 'e') { else if (c == 'e') {
autostart_runtime[autostart_runtime_idx] = optarg; autostart_runtime[autostart_runtime_idx] = optarg;
autostart_runtime_idx++; autostart_runtime_idx++;
autostart_runtime[autostart_runtime_idx] = NULL;
autostart_runtime_idx++;
} }
else if (c == 'd') else if (c == 'd')
log_level = WLR_DEBUG; log_level = WLR_DEBUG;