From: Jim Jagielski Date: Fri, 29 Jun 2007 13:28:58 +0000 (+0000) Subject: getpgid() returns a pid_t X-Git-Tag: 2.3.0~1741 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=269a4030814ec03c2d20b4d306b985f83aa2e039;p=apache getpgid() returns a pid_t git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@551889 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index 8ead7e39dd..b4550089ea 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -348,7 +348,7 @@ apr_status_t ap_mpm_safe_kill(pid_t pid, int sig) return APR_EINVAL; } #else - int pg; + pid_t pg; /* Ensure pid sanity. */ if (pid < 1) {