diff options
author | 2017-06-07 15:27:46 +0000 | |
---|---|---|
committer | 2017-06-07 15:27:46 +0000 | |
commit | 0cf33a8d5ad40849e421f1981fba4650d86853ef (patch) | |
tree | a83728c7262319e78dec28b9d3290119734803a7 /usr.bin/tmux/proc.c | |
parent | vmd: Implement simulated baudrate support in the ns8250 module. The (diff) | |
download | wireguard-openbsd-0cf33a8d5ad40849e421f1981fba4650d86853ef.tar.xz wireguard-openbsd-0cf33a8d5ad40849e421f1981fba4650d86853ef.zip |
Return 1 if name matches not 0, also fix some spaces.
Diffstat (limited to 'usr.bin/tmux/proc.c')
-rw-r--r-- | usr.bin/tmux/proc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/proc.c b/usr.bin/tmux/proc.c index 56eb2116e98..99a363009d2 100644 --- a/usr.bin/tmux/proc.c +++ b/usr.bin/tmux/proc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.c,v 1.9 2017/06/04 08:25:57 nicm Exp $ */ +/* $OpenBSD: proc.c,v 1.10 2017/06/07 15:27:46 nicm Exp $ */ /* * Copyright (c) 2015 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -47,7 +47,7 @@ struct tmuxpeer { #define PEER_BAD 0x1 void (*dispatchcb)(struct imsg *, void *); - void *arg; + void *arg; }; static int peer_check_version(struct tmuxpeer *, struct imsg *); |