On Sun, Aug 11, 2013 at 06:51:52PM +0200, Julia Lawall wrote: >From: Julia Lawall > >Replace ARRAY_AND_SIZE(e) in function argument position to avoid hiding the >arity of the called function. > >The semantic match that makes this change is as follows: >(http://coccinelle.lip6.fr/) > >// >@@ >expression e,f; >@@ > >f(..., >- ARRAY_AND_SIZE(e) >+ e,ARRAY_SIZE(e) > ,...) >// > >Signed-off-by: Julia Lawall I used to be happy with this macro as it improves readability. but ack. Tomas Cech