diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-05-31 17:56:49 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2017-05-31 17:56:49 +0000 |
commit | b6b0addf6ab08f91536d8cb34d0dc8526ecb64f7 (patch) | |
tree | 87bc92fbaa4f25813611d5a4b696e998a4c3bcd3 /usr.bin/tmux/job.c | |
parent | f21e94de18ebc6087a0451356da10a69ee07520d (diff) |
Style and spacing nits.
Diffstat (limited to 'usr.bin/tmux/job.c')
-rw-r--r-- | usr.bin/tmux/job.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/job.c b/usr.bin/tmux/job.c index 74b11f0153f..7d2432b316f 100644 --- a/usr.bin/tmux/job.c +++ b/usr.bin/tmux/job.c @@ -1,4 +1,4 @@ -/* $OpenBSD: job.c,v 1.44 2017/04/25 15:35:10 nicm Exp $ */ +/* $OpenBSD: job.c,v 1.45 2017/05/31 17:56:48 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -158,7 +158,7 @@ job_read_callback(__unused struct bufferevent *bufev, void *data) struct job *job = data; if (job->updatecb != NULL) - job->updatecb (job); + job->updatecb(job); } /* |