From 4633d81b0a206d2ecce12400736743cdce9b4e9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Tue, 26 Oct 2010 18:38:03 +0000 Subject: [PATCH] [UMPNPMGR] - Fix definition of midl_user_allocate svn path=/branches/cmake-bringup/; revision=49292 --- base/services/umpnpmgr/umpnpmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/services/umpnpmgr/umpnpmgr.c b/base/services/umpnpmgr/umpnpmgr.c index 2352efe703f..b06f1c45c8b 100644 --- a/base/services/umpnpmgr/umpnpmgr.c +++ b/base/services/umpnpmgr/umpnpmgr.c @@ -137,7 +137,7 @@ RpcServerThread(LPVOID lpParameter) } -void __RPC_FAR * __RPC_USER midl_user_allocate(SIZE_T len) +void __RPC_FAR * __RPC_USER midl_user_allocate(size_t len) { return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len); }