diff options
author | Thomas Huth <thuth@redhat.com> | 2023-10-06 14:08:19 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2023-10-12 14:09:58 +0200 |
commit | 3cc72cdbb2235b1001bab760712ef6bf543752c3 (patch) | |
tree | 34f0a28b0c1172a91695766c6cfb208c0d6cfc9e /subprojects | |
parent | a51e5124a655b3dad80b36b18547cb1eca2c5eb2 (diff) |
libvduse: Fix compiler warning with -Wshadow=local
No need to declare a new variable with the same name here,
we can simple re-use the one from the top of the function.
With this change, the file now compiles fine with -Wshadow=local.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20231006120819.480792-1-thuth@redhat.com>
Reviewed-by: Xie Yongji <xieyongji@bytedance.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'subprojects')
-rw-r--r-- | subprojects/libvduse/libvduse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subprojects/libvduse/libvduse.c b/subprojects/libvduse/libvduse.c index 377959a0b4..21ffbb5b8d 100644 --- a/subprojects/libvduse/libvduse.c +++ b/subprojects/libvduse/libvduse.c @@ -1031,7 +1031,7 @@ int vduse_dev_handler(VduseDev *dev) /* The iova will be updated by iova_to_va() later, so just remove it */ vduse_iova_remove_region(dev, req.iova.start, req.iova.last); for (i = 0; i < dev->num_queues; i++) { - VduseVirtq *vq = &dev->vqs[i]; + vq = &dev->vqs[i]; if (vq->ready) { if (vduse_queue_update_vring(vq, vq->vring.desc_addr, vq->vring.avail_addr, |