From cea9d0b39bf1dca0c81f77dce68274fbc569c906 Mon Sep 17 00:00:00 2001 From: malc Date: Sat, 5 Jul 2008 13:41:04 +0000 Subject: [PATCH] Remove static Also avoids GCC warning about old style declaration git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4849 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/dma.c b/hw/dma.c index f192c63d1..bbdecc522 100644 --- a/hw/dma.c +++ b/hw/dma.c @@ -450,7 +450,7 @@ static int dma_phony_handler (void *opaque, int nchan, int dma_pos, int dma_len) static void dma_init2(struct dma_cont *d, int base, int dshift, int page_base, int pageh_base) { - const static int page_port_list[] = { 0x1, 0x2, 0x3, 0x7 }; + const int page_port_list[] = { 0x1, 0x2, 0x3, 0x7 }; int i; d->dshift = dshift; -- 2.39.5