Re: [PATCH 10/11] net/eth: Clean up local variable shadowing

2023-09-04 Thread Philippe Mathieu-Daudé
On 1/9/23 09:07, Akihiko Odaki wrote: On 2023/09/01 7:56, Philippe Mathieu-Daudé wrote: Fix:    net/eth.c:435:20: error: declaration shadows a local variable [-Werror,-Wshadow] size_t input_size = iov_size(pkt, pkt_frags);     ^    net/eth.c:413:16: note: previous

Re: [PATCH 10/11] net/eth: Clean up local variable shadowing

2023-09-01 Thread Akihiko Odaki
On 2023/09/01 7:56, Philippe Mathieu-Daudé wrote: Fix: net/eth.c:435:20: error: declaration shadows a local variable [-Werror,-Wshadow] size_t input_size = iov_size(pkt, pkt_frags); ^ net/eth.c:413:16: note: previous declaration is here size_t inp

[PATCH 10/11] net/eth: Clean up local variable shadowing

2023-08-31 Thread Philippe Mathieu-Daudé
Fix: net/eth.c:435:20: error: declaration shadows a local variable [-Werror,-Wshadow] size_t input_size = iov_size(pkt, pkt_frags); ^ net/eth.c:413:16: note: previous declaration is here size_t input_size = iov_size(pkt, pkt_frags); ^ Sig