diff options
Diffstat (limited to 'src/dillo.cc')
-rw-r--r-- | src/dillo.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dillo.cc b/src/dillo.cc index 405f4c3e..5818e352 100644 --- a/src/dillo.cc +++ b/src/dillo.cc @@ -165,7 +165,7 @@ static void est_sigchld(void) (void) sigemptyset(&set); sigact.sa_handler = raw_sigchld2; /* our custom handler */ - sigact.sa_mask = set; /* no aditional signal blocks */ + sigact.sa_mask = set; /* no additional signal blocks */ sigact.sa_flags = SA_NOCLDSTOP; /* ignore stop/resume states */ if (sigaction(SIGCHLD, &sigact, NULL) == -1) { perror("sigaction"); |