diff options
author | Jim Meyering | 2012-05-21 12:03:10 +0200 |
---|---|---|
committer | Paolo Bonzini | 2012-05-25 13:00:27 +0200 |
commit | 12badfc2385ae6822cbcbcc8d1c0ed71c9e0ff09 (patch) | |
tree | 85c78e313d89c372c4660fc26e088ce0b9b74c32 /hw/scsi-bus.c | |
parent | audio: Always call fini on exit (diff) | |
download | qemu-12badfc2385ae6822cbcbcc8d1c0ed71c9e0ff09.tar.gz qemu-12badfc2385ae6822cbcbcc8d1c0ed71c9e0ff09.tar.xz qemu-12badfc2385ae6822cbcbcc8d1c0ed71c9e0ff09.zip |
scsi: declare vmstate_info_scsi_requests to be static
Signed-off-by: Jim Meyering <meyering@redhat.com>
Diffstat (limited to 'hw/scsi-bus.c')
-rw-r--r-- | hw/scsi-bus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/scsi-bus.c b/hw/scsi-bus.c index 8ab9bcda86..f10f3ec25c 100644 --- a/hw/scsi-bus.c +++ b/hw/scsi-bus.c @@ -1561,7 +1561,7 @@ static int get_scsi_requests(QEMUFile *f, void *pv, size_t size) return 0; } -const VMStateInfo vmstate_info_scsi_requests = { +static const VMStateInfo vmstate_info_scsi_requests = { .name = "scsi-requests", .get = get_scsi_requests, .put = put_scsi_requests, |