diff options
author | nicm <nicm> | 2021-11-01 07:48:04 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-11-01 07:48:04 +0000 |
commit | 4fe5aa99fb203ddb25089955d8814e1065e11a60 (patch) | |
tree | 46c0f54631ee52b914dd642e091db2a36a65262c /status.c | |
parent | 4acad43013b7bb5f91103a68cfce591b1980ae17 (diff) | |
download | rtmux-4fe5aa99fb203ddb25089955d8814e1065e11a60.tar.gz rtmux-4fe5aa99fb203ddb25089955d8814e1065e11a60.tar.bz2 rtmux-4fe5aa99fb203ddb25089955d8814e1065e11a60.zip |
Fix a comparison, from Ben Boeckel, and a crash when opening completion
menu, from Anindya Mukherjee.
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1727,7 +1727,7 @@ status_prompt_complete_list_menu(struct client *c, char **list, u_int size, item.name = list[i]; item.key = '0' + (i - spm->start); item.command = NULL; - menu_add_item(menu, &item, NULL, NULL, NULL); + menu_add_item(menu, &item, NULL, c, NULL); } if (options_get_number(c->session->options, "status-position") == 0) |