diff options
author | Jim Meyering <meyering@redhat.com> | 2012-05-21 12:03:10 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2012-05-25 13:00:27 +0200 |
commit | 12badfc2385ae6822cbcbcc8d1c0ed71c9e0ff09 (patch) | |
tree | 85c78e313d89c372c4660fc26e088ce0b9b74c32 /hw | |
parent | aeb29b6459cb9496b38c820f3faff64cf2369d0d (diff) |
scsi: declare vmstate_info_scsi_requests to be static
Signed-off-by: Jim Meyering <meyering@redhat.com>
Diffstat (limited to 'hw')
-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, |