From 356fab7bcb378d0adad487dc6898085b58d54fec Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 7 Jun 2017 15:27:46 +0000 Subject: Return 1 if name matches not 0, also fix some spaces. --- tmux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 7fb5373a..f1d150df 100644 --- a/tmux.h +++ b/tmux.h @@ -617,7 +617,7 @@ struct job { job_free_cb freecb; void *data; - LIST_ENTRY(job) entry; + LIST_ENTRY(job) entry; }; LIST_HEAD(joblist, job); @@ -676,7 +676,7 @@ struct screen_write_ctx { struct screen_write_collect_item *item; struct screen_write_collect_line *list; u_int scrolled; - u_int bg; + u_int bg; u_int cells; u_int written; -- cgit