From bf53dfa51559fd094338f23acd0f4ec312bfd215 Mon Sep 17 00:00:00 2001 From: wn_ Date: Wed, 10 Nov 2021 21:53:28 +0000 Subject: Don't use 'mixed' directly (PHP 8+). --- update_daemon2.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'update_daemon2.php') diff --git a/update_daemon2.php b/update_daemon2.php index 46f7450a6..06a31225e 100755 --- a/update_daemon2.php +++ b/update_daemon2.php @@ -79,8 +79,9 @@ /** * @SuppressWarnings(unused) + * @param mixed $siginfo */ - function sigchld_handler(int $signo, mixed $siginfo): void { + function sigchld_handler(int $signo, $siginfo): void { $running_jobs = reap_children(); Debug::log("Received SIGCHLD, $running_jobs active tasks left."); -- cgit v1.2.3