Re: [PATCH 2/5] crypto/camellia_generic.c: convert comma to semicolon

2013-08-10 Thread Julia Lawall
On Sat, 10 Aug 2013, Joe Perches wrote: > On Sat, 2013-08-10 at 17:40 +0200, Julia Lawall wrote: > > Replace a comma between expression statements by a semicolon. > [] > > This patch is separate from the others because the code appears to be > > machine-generated. > > It may have once been machin

Re: [PATCH 2/5] crypto/camellia_generic.c: convert comma to semicolon

2013-08-10 Thread Joe Perches
On Sat, 2013-08-10 at 17:40 +0200, Julia Lawall wrote: > Replace a comma between expression statements by a semicolon. [] > This patch is separate from the others because the code appears to be > machine-generated. It may have once been machine generated, but it's not now. It's been modified sever

[PATCH 2/5] crypto/camellia_generic.c: convert comma to semicolon

2013-08-10 Thread Julia Lawall
From: Julia Lawall Replace a comma between expression statements by a semicolon. A simplified version of the semantic patch that performs this transformation is as follows: (http://coccinelle.lip6.fr/) // @r@ expression e1,e2,e; type T; identifier i; @@ e1 -, +; e2; // This patch is separ