summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2003-03-23 22:57:56 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2003-03-23 22:57:56 +0000
commit236122df68662090b57f1d86596e07b36fa7aef9 (patch)
tree74bf6431e800b80a2bf8dce5abf7334c303e2282 /lib
parentae88f0c9aec0364d3547edf145af8d746ad06b72 (diff)
downloadmailutils-236122df68662090b57f1d86596e07b36fa7aef9.tar.gz
mailutils-236122df68662090b57f1d86596e07b36fa7aef9.tar.bz2
Use ARG_UNUSED where necessary
Diffstat (limited to 'lib')
-rw-r--r--lib/daemon.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/daemon.c b/lib/daemon.c
index 057e56370..77000be2e 100644
--- a/lib/daemon.c
+++ b/lib/daemon.c
@@ -89,17 +89,16 @@
stderr and/or stdout, and `/dev/null' as stdin, or any other combination
that makes sense for your particular daemon. */
#define MAXFD 64
void
-waitdaemon_timeout (int signo)
+waitdaemon_timeout (int signo ARG_UNUSED)
{
int left;
- (void)signo;
left = alarm (0);
signal (SIGALRM, SIG_DFL);
if (left == 0)
{
fprintf (stderr, "timed out waiting for child\n");
exit (1);

Return to:

Send suggestions and report system problems to the System administrator.