Re: [PATCH] ipmr: Replace comma with semicolon

2014-05-30 Thread David Miller
From: Himangi Saraogi Date: Fri, 30 May 2014 21:10:48 +0530 > This patch replaces a comma between expression statements by a semicolon. > > A simplified version of the semantic patch that performs this > transformation is as follows: ... > Signed-off-by: Himangi Saraogi Applied. -- To unsubsc

[PATCH] ipmr: Replace comma with semicolon

2014-05-30 Thread Himangi Saraogi
This patch replaces a comma between expression statements by a semicolon. A simplified version of the semantic patch that performs this transformation is as follows: // @r@ expression e1,e2,e; type T; identifier i; @@ e1 -, +; e2; // Signed-off-by: Himangi Saraogi --- net/ipv4/ipmr.c | 2