aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Janda <felix.janda@posteo.de>2017-09-14 21:51:06 -0500
committerEric Sandeen <sandeen@redhat.com>2017-09-14 21:51:06 -0500
commita03055f03f0c3a6b39c8989c560fb50fe93bf6ad (patch)
treea4fa1e98ffe5a7a5f110d0b4ce033eb7551c10d3
parentb848d35f148111ee35ba1815012920e42b07c18c (diff)
downloadxfsdump-dev-a03055f03f0c3a6b39c8989c560fb50fe93bf6ad.tar.gz
common/main.c: Replace nonstandard SIGCLD by SIGCHLD
[sandeen: fixed build with musl libc] Signed-off-by: Felix Janda <felix.janda@posteo.de> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
-rw-r--r--common/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/main.c b/common/main.c
index b34e9747..49dd3616 100644
--- a/common/main.c
+++ b/common/main.c
@@ -2237,7 +2237,7 @@ static sig_printmap_t sig_printmap[ ] = {
{SIGTERM, "SIGTERM"},
{SIGUSR1, "SIGUSR1"},
{SIGUSR2, "SIGUSR2"},
- {SIGCLD, "SIGCLD"},
+ {SIGCHLD, "SIGCHLD"},
{SIGPWR, "SIGPWR"},
{SIGURG, "SIGURG"},
{SIGPOLL, "SIGPOLL"},