diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2011-01-26 00:11:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2011-01-26 00:11:47 +0000 |
commit | 4dfb29fa38a22615eda253b1124261379f6fbbcc (patch) | |
tree | 0b5fcc4d7ad0cc68d672c81c0b931d9d3245bc49 /tmux.h | |
parent | ecc22c521d83f8ce480c0e2866fdf3ed14bd6131 (diff) | |
download | rtmux-4dfb29fa38a22615eda253b1124261379f6fbbcc.tar.gz rtmux-4dfb29fa38a22615eda253b1124261379f6fbbcc.tar.bz2 rtmux-4dfb29fa38a22615eda253b1124261379f6fbbcc.zip |
Use LIST_* not SLIST_*.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -684,10 +684,10 @@ struct job { #define JOB_PERSIST 0x1 /* don't free after callback */ RB_ENTRY(job) entry; - SLIST_ENTRY(job) lentry; + LIST_ENTRY(job) lentry; }; RB_HEAD(jobs, job); -SLIST_HEAD(joblist, job); +LIST_HEAD(joblist, job); /* Screen selection. */ struct screen_sel { @@ -990,9 +990,9 @@ struct tty_term { #define TERM_EARLYWRAP 0x4 int flags; - SLIST_ENTRY(tty_term) entry; + LIST_ENTRY(tty_term) entry; }; -SLIST_HEAD(tty_terms, tty_term); +LIST_HEAD(tty_terms, tty_term); struct tty { char *path; |