Commit 28cd2a76 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

pipes: Add missing void into func arguments

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 9981b6a6
...@@ -90,7 +90,7 @@ static void show_saved_pipe_fds(struct pipe_info *pi) ...@@ -90,7 +90,7 @@ static void show_saved_pipe_fds(struct pipe_info *pi)
pr_info(" `- FD %d pid %d\n", fle->fe.fd, fle->pid); pr_info(" `- FD %d pid %d\n", fle->fe.fd, fle->pid);
} }
static int handle_pipes_data() static int handle_pipes_data(void)
{ {
int fd, ret; int fd, ret;
...@@ -128,7 +128,7 @@ err: ...@@ -128,7 +128,7 @@ err:
} }
/* Choose who will restore a pipe. */ /* Choose who will restore a pipe. */
void mark_pipe_master() void mark_pipe_master(void)
{ {
LIST_HEAD(head); LIST_HEAD(head);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment