Commit 7d49fa58 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov

parasite: Add missing 'void' in function declarations

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Acked-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent c762d388
...@@ -411,13 +411,13 @@ static int init(struct parasite_init_args *args) ...@@ -411,13 +411,13 @@ static int init(struct parasite_init_args *args)
return ret; return ret;
} }
static int set_logfd() static int set_logfd(void)
{ {
logfd = recv_fd(tsock); logfd = recv_fd(tsock);
return logfd; return logfd;
} }
static int fini() static int fini(void)
{ {
if (reset_blocked == 1) if (reset_blocked == 1)
sys_sigprocmask(SIG_SETMASK, &old_blocked, NULL); sys_sigprocmask(SIG_SETMASK, &old_blocked, NULL);
......
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