From 39c92c6522d14dd6ad6ab63edfe53af61b1da6a9 Mon Sep 17 00:00:00 2001 From: Casper Hornstrup Date: Sat, 7 Jun 2003 12:25:53 +0000 Subject: [PATCH] 2003-06-07 Casper S. Hornstrup * hal/halx86/dma.c (AdapterObjects): Don't put braces on scalar initializers. svn path=/trunk/; revision=4868 --- reactos/ChangeLog | 5 +++++ reactos/hal/halx86/dma.c | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) 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 *****************************************************************/