From: Alan T. DeKok Date: Mon, 30 Nov 2015 20:01:23 +0000 (-0500) Subject: cast for %u X-Git-Tag: release_3_0_11~121 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=290776369860edd4eb620341041f9137d91f9e03;p=thirdparty%2Ffreeradius-server.git cast for %u --- diff --git a/src/main/exec.c b/src/main/exec.c index d8a73c300a5..77fdd2e386f 100644 --- a/src/main/exec.c +++ b/src/main/exec.c @@ -436,7 +436,7 @@ int radius_readfrom_program(int fd, pid_t pid, int timeout, rcode = select(fd + 1, &fds, NULL, NULL, &wake); if (rcode == 0) { too_long: - DEBUG("Child PID %u is taking too much time: forcing failure and killing child.", pid); + DEBUG("Child PID %u is taking too much time: forcing failure and killing child.", (unsigned int) pid); kill(pid, SIGTERM); close(fd); /* should give SIGPIPE to child, too */