From 06b2035cc7444370e4ad913f25e400545915a743 Mon Sep 17 00:00:00 2001 From: wrowe Date: Sun, 6 Aug 2000 06:07:33 +0000 Subject: Remaining cleanup of ap_ -> apr_ and AP_ -> APR_ transformation... see src/lib/apr/apr_compat.h for most details. Also a few minor nits to get Win32 to build. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60481 13f79535-47bb-0310-9956-ffa450edef68 --- threadproc/win32/signals.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'threadproc/win32/signals.c') diff --git a/threadproc/win32/signals.c b/threadproc/win32/signals.c index a75cd5309..8346c40f5 100644 --- a/threadproc/win32/signals.c +++ b/threadproc/win32/signals.c @@ -66,7 +66,7 @@ /* Windows only really support killing process, but that will do for now. */ apr_status_t apr_kill(apr_proc_t *proc, int signal) { - if (TerminateProcess(proc->pid, signal) == 0) { + if (TerminateProcess((HANDLE)proc->pid, signal) == 0) { return GetLastError(); } return APR_SUCCESS; -- cgit v1.2.1