From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KFBB0-00053B-QO for qemu-devel@nongnu.org; Sat, 05 Jul 2008 13:03:58 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KFBB0-000516-3u for qemu-devel@nongnu.org; Sat, 05 Jul 2008 13:03:58 -0400 Received: from [199.232.76.173] (port=58773 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KFBAz-00050b-KF for qemu-devel@nongnu.org; Sat, 05 Jul 2008 13:03:57 -0400 Received: from savannah.gnu.org ([199.232.41.3]:44087 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KFBAz-0007Eg-85 for qemu-devel@nongnu.org; Sat, 05 Jul 2008 13:03:57 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1KFBAx-00071T-RD for qemu-devel@nongnu.org; Sat, 05 Jul 2008 17:03:55 +0000 Received: from pbrook by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1KFBAx-00071P-HH for qemu-devel@nongnu.org; Sat, 05 Jul 2008 17:03:55 +0000 MIME-Version: 1.0 Errors-To: pbrook Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Paul Brook Message-Id: Date: Sat, 05 Jul 2008 17:03:55 +0000 Subject: [Qemu-devel] [4850] Re-add static qualifier. Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 4850 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4850 Author: pbrook Date: 2008-07-05 17:03:54 +0000 (Sat, 05 Jul 2008) Log Message: ----------- Re-add static qualifier. Fix annother occurance of "const static". Modified Paths: -------------- trunk/hw/dma.c trunk/target-i386/translate.c Modified: trunk/hw/dma.c =================================================================== --- trunk/hw/dma.c 2008-07-05 13:41:04 UTC (rev 4849) +++ trunk/hw/dma.c 2008-07-05 17:03:54 UTC (rev 4850) @@ -450,7 +450,7 @@ static void dma_init2(struct dma_cont *d, int base, int dshift, int page_base, int pageh_base) { - const int page_port_list[] = { 0x1, 0x2, 0x3, 0x7 }; + static const int page_port_list[] = { 0x1, 0x2, 0x3, 0x7 }; int i; d->dshift = dshift; Modified: trunk/target-i386/translate.c =================================================================== --- trunk/target-i386/translate.c 2008-07-05 13:41:04 UTC (rev 4849) +++ trunk/target-i386/translate.c 2008-07-05 17:03:54 UTC (rev 4850) @@ -5475,7 +5475,7 @@ case 0x18 ... 0x1b: { int op1, l1; - const static uint8_t fcmov_cc[8] = { + static const uint8_t fcmov_cc[8] = { (JCC_B << 1), (JCC_Z << 1), (JCC_BE << 1),