From 579da7840225e2c1b6012467c25b94eedda291d7 Mon Sep 17 00:00:00 2001 From: Casper Hornstrup Date: Sat, 29 Mar 2003 12:55:48 +0000 Subject: [PATCH] 2003-03-29 Casper S. Hornstrup * ntoskrnl/ex/sysinfo.c (SystemProcessInformation): Fix warning. svn path=/trunk/; revision=4453 --- reactos/ChangeLog | 4 ++++ reactos/ntoskrnl/ex/sysinfo.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/reactos/ChangeLog b/reactos/ChangeLog index 1ae963d8cad..8462dc863ee 100644 --- a/reactos/ChangeLog +++ b/reactos/ChangeLog @@ -1,3 +1,7 @@ +2003-03-29 Casper S. Hornstrup + + * ntoskrnl/ex/sysinfo.c (SystemProcessInformation): Fix warning. + 2003-03-16 Casper S. Hornstrup * include/ntos/rtltypes.h (PRTL_BASE_PROCESS_START_ROUTINE): Define. diff --git a/reactos/ntoskrnl/ex/sysinfo.c b/reactos/ntoskrnl/ex/sysinfo.c index 943f02a95dc..178ffb91d5f 100644 --- a/reactos/ntoskrnl/ex/sysinfo.c +++ b/reactos/ntoskrnl/ex/sysinfo.c @@ -1,4 +1,4 @@ -/* $Id: sysinfo.c,v 1.19 2003/03/24 00:09:32 hyperion Exp $ +/* $Id: sysinfo.c,v 1.20 2003/03/29 12:55:48 chorns Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -461,7 +461,7 @@ QSI_DEF(SystemPathInformation) /* Class 5 - Process Information */ QSI_DEF(SystemProcessInformation) { - int ovlSize=0, nThreads=1; + ULONG ovlSize=0, nThreads=1; PEPROCESS pr, syspr; unsigned char *pCur;