diff --git a/reactos/ChangeLog b/reactos/ChangeLog index 0a4b0f30883..38acb6196b1 100644 --- a/reactos/ChangeLog +++ b/reactos/ChangeLog @@ -1,3 +1,8 @@ +2003-06-07 Casper S. Hornstrup + + * hal/halx86/dma.c (AdapterObjects): Don't put braces on scalar + initializers. + 2003-06-07 Casper S. Hornstrup Changes for compiling with w32api diff --git a/reactos/hal/halx86/dma.c b/reactos/hal/halx86/dma.c index f7bdc097ebc..8ba8b19f905 100644 --- a/reactos/hal/halx86/dma.c +++ b/reactos/hal/halx86/dma.c @@ -1,4 +1,4 @@ -/* $Id: dma.c,v 1.3 2002/09/08 10:22:24 chorns Exp $ +/* $Id: dma.c,v 1.4 2003/06/07 12:25:53 chorns Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -17,10 +17,10 @@ #include ADAPTER_OBJECT AdapterObjects[] = { - { 0, (PVOID)0x87, (PVOID)0x1, (PVOID)0x0, { 0 }, NULL }, - { 1, (PVOID)0x83, (PVOID)0x3, (PVOID)0x2, { 0 }, NULL }, - { 2, (PVOID)0x81, (PVOID)0x5, (PVOID)0x4, { 0 }, NULL }, - { 3, (PVOID)0x82, (PVOID)0x7, (PVOID)0x6, { 0 }, NULL } }; + { 0, (PVOID)0x87, (PVOID)0x1, (PVOID)0x0, 0, NULL }, + { 1, (PVOID)0x83, (PVOID)0x3, (PVOID)0x2, 0, NULL }, + { 2, (PVOID)0x81, (PVOID)0x5, (PVOID)0x4, 0, NULL }, + { 3, (PVOID)0x82, (PVOID)0x7, (PVOID)0x6, 0, NULL } }; /* FUNCTIONS *****************************************************************/