aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2018-03-29 10:32:12 -0400
committerJames McCoy <jamessan@jamessan.com>2018-03-29 10:32:12 -0400
commite54ff10d44a18b59350503accc68811e4a5be29f (patch)
tree646a4d766078268c9b23dcbcd22893d1be15edff /src
parentb5a47f49077b9eb8b5d87d523bebff08fc079ac9 (diff)
downloadrneovim-e54ff10d44a18b59350503accc68811e4a5be29f.tar.gz
rneovim-e54ff10d44a18b59350503accc68811e4a5be29f.tar.bz2
rneovim-e54ff10d44a18b59350503accc68811e4a5be29f.zip
lint
Diffstat (limited to 'src')
-rw-r--r--src/nvim/os/process.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/os/process.c b/src/nvim/os/process.c
index 60ca890e0e..63eea9022b 100644
--- a/src/nvim/os/process.c
+++ b/src/nvim/os/process.c
@@ -160,7 +160,9 @@ int os_proc_children(int ppid, int **proc_list, size_t *proc_count)
# define KP_PPID(o) o.p_ppid
# endif
# ifdef __NetBSD__
- static int name[] = { CTL_KERN, KERN_PROC2, KERN_PROC_ALL, 0, (int)(sizeof(struct kinfo_proc2)), 0 };
+ static int name[] = {
+ CTL_KERN, KERN_PROC2, KERN_PROC_ALL, 0, (int)(sizeof(struct kinfo_proc2)), 0
+ };
# else
static int name[] = { CTL_KERN, KERN_PROC, KERN_PROC_ALL, 0 };
# endif