diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-12-04 20:44:44 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-12-04 20:44:44 +0000 |
commit | d05ac8faf57d5f0bc9310e41a3a9099397a778a5 (patch) | |
tree | d6b0ff6b75ff22d3e8e9b460749a799c68274f1b /hw/eeprom93xx.c | |
parent | 407f879abb7b3c9ad091f6dabb673dad06e549e8 (diff) | |
download | qemu-d05ac8faf57d5f0bc9310e41a3a9099397a778a5.tar.gz qemu-d05ac8faf57d5f0bc9310e41a3a9099397a778a5.tar.bz2 qemu-d05ac8faf57d5f0bc9310e41a3a9099397a778a5.zip |
Add "static" to please Sparse
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/eeprom93xx.c')
-rw-r--r-- | hw/eeprom93xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/eeprom93xx.c b/hw/eeprom93xx.c index 43244e771e..30a35340ad 100644 --- a/hw/eeprom93xx.c +++ b/hw/eeprom93xx.c @@ -107,7 +107,7 @@ static void put_unused(QEMUFile *f, void *pv, size_t size) exit(0); } -const VMStateInfo vmstate_hack_uint16_from_uint8 = { +static const VMStateInfo vmstate_hack_uint16_from_uint8 = { .name = "uint16_from_uint8", .get = get_uint16_from_uint8, .put = put_unused, |