From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37747) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WPFYt-0005CX-O2 for qemu-devel@nongnu.org; Sun, 16 Mar 2014 14:13:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WPFYo-0005xK-Rh for qemu-devel@nongnu.org; Sun, 16 Mar 2014 14:13:27 -0400 From: Stefan Weil Date: Sun, 16 Mar 2014 19:13:18 +0100 Message-Id: <1394993598-23318-1-git-send-email-sw@weilnetz.de> Subject: [Qemu-devel] [PATCH] hw/ide: Add missing 'static' attributes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-trivial@nongnu.org Cc: Kevin Wolf , Stefan Weil , qemu-devel@nongnu.org This fixes a warning from the static code analysis (smatch). Signed-off-by: Stefan Weil --- hw/ide/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/ide/pci.c b/hw/ide/pci.c index 91151fc..d8b1157 100644 --- a/hw/ide/pci.c +++ b/hw/ide/pci.c @@ -421,7 +421,7 @@ static const VMStateDescription vmstate_bmdma_current = { } }; -const VMStateDescription vmstate_bmdma_status = { +static const VMStateDescription vmstate_bmdma_status = { .name ="ide bmdma/status", .version_id = 1, .minimum_version_id = 1, -- 1.7.10.4