kvm-host icon indicating copy to clipboard operation
kvm-host copied to clipboard

Avoid shadowed declaration

Open jserv opened this issue 1 year ago • 0 comments

Reported by Cppcheck:

Checking src/virtio-blk.c ...
src/virtio-blk.c:115:21: style: Local variable 'r' shadows outer variable [shadowVariable]
            ssize_t r;
                    ^
src/virtio-blk.c:105:13: note: Shadowed declaration
        int r = 0;
            ^
src/virtio-blk.c:115:21: note: Shadow variable
            ssize_t r;
                    ^

Command:

$ cppcheck --enable=all src/*.[ch] src/arch/x86/*.[ch]

jserv avatar May 24 '24 13:05 jserv