ipmr: Replace comma with semicolon
authorHimangi Saraogi <himangi774@gmail.com>
Fri, 30 May 2014 15:40:48 +0000 (21:10 +0530)
committerDavid S. Miller <davem@davemloft.net>
Sat, 31 May 2014 00:48:57 +0000 (17:48 -0700)
commit70cb4a4526d4d3ad901a979a5f26917149408f8d
tree85f155e5de9dcb4f52fce4d286823da0b218b9ac
parente9bcbc970a774bc8e17fd7eb24b9969be67d666e
ipmr: Replace comma with semicolon

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:

// <smpl>
@r@
expression e1,e2,e;
type T;
identifier i;
@@

 e1
-,
+;
 e2;
// </smpl>

Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/ipmr.c