diff options
author | James McCoy <jamessan@jamessan.com> | 2018-03-29 10:32:12 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2018-03-29 10:32:12 -0400 |
commit | e54ff10d44a18b59350503accc68811e4a5be29f (patch) | |
tree | 646a4d766078268c9b23dcbcd22893d1be15edff /src | |
parent | b5a47f49077b9eb8b5d87d523bebff08fc079ac9 (diff) | |
download | rneovim-e54ff10d44a18b59350503accc68811e4a5be29f.tar.gz rneovim-e54ff10d44a18b59350503accc68811e4a5be29f.tar.bz2 rneovim-e54ff10d44a18b59350503accc68811e4a5be29f.zip |
lint
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/os/process.c | 4 |
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 |