mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Use correct context.
Patch by Theodor Willax <theodor_willax@hotmail.com> svn path=/trunk/; revision=11568
This commit is contained in:
parent
d00861b8e8
commit
473854d2fd
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
*
|
||||||
* $Id: desktop.c,v 1.22 2004/09/28 15:02:30 weiden Exp $
|
* $Id: desktop.c,v 1.23 2004/11/06 22:28:11 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -700,7 +700,7 @@ static NTSTATUS STDCALL PaintDesktopVersionCallback(
|
||||||
DPRINT("PaintDesktopVersionCallback ValueType=%d ValueLength=%d\n", ValueType, ValueLength);
|
DPRINT("PaintDesktopVersionCallback ValueType=%d ValueLength=%d\n", ValueType, ValueLength);
|
||||||
|
|
||||||
if (ValueType==REG_DWORD && ValueLength==sizeof(DWORD))
|
if (ValueType==REG_DWORD && ValueLength==sizeof(DWORD))
|
||||||
*((DWORD*)Context) = *(DWORD*)ValueData;
|
*((DWORD*)EntryContext) = *(DWORD*)ValueData;
|
||||||
|
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue