From: Philippe Mathieu-Daudé Date: Tue, 16 May 2017 00:11:50 +0000 (-0300) Subject: coccinelle: fix typo in comment X-Git-Tag: v2.10.0-rc0~141^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f652402487be592402a5edc000a652344e842369;p=thirdparty%2Fqemu.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 48680f2c2a7..4cf50e75ea0 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;