Re: [PATCH] rds/tcp_listen: Replace comma with semicolon

2014-05-30 Thread David Miller
From: Himangi Saraogi Date: Fri, 30 May 2014 21:17:13 +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 > Acked-by: Julia

[PATCH] rds/tcp_listen: 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 Acked-by: Julia Lawall

[PATCH] rds/tcp_listen: 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: // smpl @r@ expression e1,e2,e; type T; identifier i; @@ e1 -, +; e2; // /smpl Signed-off-by: Himangi Saraogi

Re: [PATCH] rds/tcp_listen: Replace comma with semicolon

2014-05-30 Thread David Miller
From: Himangi Saraogi himangi...@gmail.com Date: Fri, 30 May 2014 21:17:13 +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