Re: [PATCH v2 17/22] util/vhost-user-server: Clean up local variable shadowing

2023-09-22 Thread Michael S. Tsirkin
On Mon, Sep 04, 2023 at 06:12:29PM +0200, Philippe Mathieu-Daudé wrote: > Fix: > > util/vhost-user-server.c: In function ‘set_watch’: > util/vhost-user-server.c:274:20: warning: declaration of ‘vu_fd_watch’ > shadows a previous local [-Wshadow=compatible-local] > 274 | VuFdWatch

[PATCH v2 17/22] util/vhost-user-server: Clean up local variable shadowing

2023-09-04 Thread Philippe Mathieu-Daudé
Fix: util/vhost-user-server.c: In function ‘set_watch’: util/vhost-user-server.c:274:20: warning: declaration of ‘vu_fd_watch’ shadows a previous local [-Wshadow=compatible-local] 274 | VuFdWatch *vu_fd_watch = g_new0(VuFdWatch, 1); |^~~