Skip to content

Commit

Permalink
hw/ide: Add missing 'static' attributes
Browse files Browse the repository at this point in the history
This fixes a warning from the static code analysis (smatch).

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
  • Loading branch information
stweil authored and Michael Tokarev committed Mar 27, 2014
1 parent 6df05bd commit 06ab66c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/ide/pci.c
Expand Up @@ -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,
Expand Down

0 comments on commit 06ab66c

Please sign in to comment.