1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-18 10:04:20 +03:00

make: fix compilation for some compiler

Reported-by: adamboardman of gemian
This commit is contained in:
Zdenek Kabelac 2021-09-24 17:18:30 +02:00
parent ef21ed78ae
commit 6c85ea50de

View File

@ -49,7 +49,7 @@ int become_daemon(struct cmd_context *cmd, int skip_lvm)
int null_fd;
pid_t pid;
struct sigaction act = {
{_sigchld_handler},
.sa_handler = _sigchld_handler,
.sa_flags = SA_NOCLDSTOP,
};