From 9faf200230d11939e69d6e2ae0cb175ddf823529 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Wed, 3 Aug 2005 22:31:41 +0000 Subject: [PATCH] fixed difference in signedness warning (GCC4) svn path=/trunk/; revision=17035 --- reactos/services/umpnpmgr/umpnpmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/services/umpnpmgr/umpnpmgr.c b/reactos/services/umpnpmgr/umpnpmgr.c index c1e514225e9..f2075c17c35 100644 --- a/reactos/services/umpnpmgr/umpnpmgr.c +++ b/reactos/services/umpnpmgr/umpnpmgr.c @@ -434,7 +434,7 @@ PNP_SetDeviceRegProp(handle_t BindingHandle, lpValueName, 0, DataType, - Buffer, + (const BYTE*)Buffer, Length)) ret = CR_REGISTRY_ERROR; }