diff options
author | nicm <nicm> | 2019-05-03 15:43:01 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-05-03 15:43:01 +0000 |
commit | cf6075fb29fcd86f11a1f2cc6e906c62f39d4032 (patch) | |
tree | a498d462a31546fbfeb455885a027e3a15f7a50d /tmux.h | |
parent | 33298d6df67e2ba3d90abdc94250eeaa963c3730 (diff) | |
download | rtmux-cf6075fb29fcd86f11a1f2cc6e906c62f39d4032.tar.gz rtmux-cf6075fb29fcd86f11a1f2cc6e906c62f39d4032.tar.bz2 rtmux-cf6075fb29fcd86f11a1f2cc6e906c62f39d4032.zip |
Correct ordering when adding after an existing item.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1291,7 +1291,7 @@ struct cmdq_shared { /* Command queue item. */ typedef enum cmd_retval (*cmdq_cb) (struct cmdq_item *, void *); struct cmdq_item { - const char *name; + char *name; struct cmdq_list *queue; struct cmdq_item *next; |