Re: [PATCH 4/4] usbip: remove unneeded structure

2014-12-01 Thread Valentina Manea
On Sun, Nov 30, 2014 at 8:14 PM, Julia Lawall wrote: > From: Julia Lawall > > Delete a local structure that is only used to be initialized by memset. > > A semantic patch that makes this change is as follows: > (http://coccinelle.lip6.fr/) > > // > @@ > identifier x,i; > @@ > > { > ... when any

[PATCH 4/4] usbip: remove unneeded structure

2014-11-30 Thread Julia Lawall
From: Julia Lawall Delete a local structure that is only used to be initialized by memset. A semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ identifier x,i; @@ { ... when any -struct i x; <+... when != x - memset(&x,...); ...+> } // Signed-off-by: Jul