From: Philippe Mathieu-Daudé Date: Tue, 16 May 2017 00:11:50 +0000 (-0300) Subject: coccinelle: fix typo in comment X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f652402487be592402a5edc000a652344e842369;p=qemu.git coccinelle: fix typo in comment Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Eric Blake Signed-off-by: Stefan Hajnoczi --- diff --git a/scripts/coccinelle/return_directly.cocci b/scripts/coccinelle/return_directly.cocci index 48680f2c2a..4cf50e75ea 100644 --- a/scripts/coccinelle/return_directly.cocci +++ b/scripts/coccinelle/return_directly.cocci @@ -1,4 +1,4 @@ -// replace 'R = X; return R;' with 'return R;' +// replace 'R = X; return R;' with 'return X;' @@ identifier VAR; expression E;