2003-03-29 Casper S. Hornstrup <chorns@users.sourceforge.net>
authorCasper Hornstrup <chorns@users.sourceforge.net>
Sat, 29 Mar 2003 12:55:48 +0000 (12:55 +0000)
committerCasper Hornstrup <chorns@users.sourceforge.net>
Sat, 29 Mar 2003 12:55:48 +0000 (12:55 +0000)
* ntoskrnl/ex/sysinfo.c (SystemProcessInformation): Fix warning.

svn path=/trunk/; revision=4453

reactos/ChangeLog
reactos/ntoskrnl/ex/sysinfo.c

index 1ae963d..8462dc8 100644 (file)
@@ -1,3 +1,7 @@
+2003-03-29  Casper S. Hornstrup  <chorns@users.sourceforge.net>
+
+       * ntoskrnl/ex/sysinfo.c (SystemProcessInformation): Fix warning.
+
 2003-03-16  Casper S. Hornstrup  <chorns@users.sourceforge.net>
 
        * include/ntos/rtltypes.h (PRTL_BASE_PROCESS_START_ROUTINE): Define.
index 943f02a..178ffb9 100644 (file)
@@ -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;