Commit in reactos/ntoskrnl/io on MAIN
buildirp.c+2-21.44 -> 1.45
Fix arithmetics on void.

reactos/ntoskrnl/io
buildirp.c 1.44 -> 1.45
diff -u -r1.44 -r1.45
--- buildirp.c	15 Aug 2004 16:39:03 -0000	1.44
+++ buildirp.c	21 Aug 2004 20:42:10 -0000	1.45
@@ -1,4 +1,4 @@
-/* $Id: buildirp.c,v 1.44 2004/08/15 16:39:03 chorns Exp $
+/* $Id: buildirp.c,v 1.45 2004/08/21 20:42:10 tamlin Exp $
  *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS kernel
@@ -258,7 +258,7 @@
 	     RtlCopyMemory(Irp->AssociatedIrp.SystemBuffer,
 			   InputBuffer,
 			   InputBufferLength);
-	     RtlZeroMemory(Irp->AssociatedIrp.SystemBuffer + InputBufferLength,
+	     RtlZeroMemory((char*)Irp->AssociatedIrp.SystemBuffer + InputBufferLength,
 			   BufferLength - InputBufferLength);
 	  }
 	else
CVSspam 0.2.8