libxl: CODING_STYLE: Deprecate `error' for out blocks
authorIan Jackson <ian.jackson@eu.citrix.com>
Wed, 5 Nov 2014 14:26:30 +0000 (14:26 +0000)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Tue, 18 Nov 2014 14:51:52 +0000 (14:51 +0000)
We should have only one name for this and `out' is more prevalent.

Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
Release-Acked-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
tools/libxl/CODING_STYLE

index 32d058f5a0628a72960ee40a23bfc4b3306862b5..128cfea4ef6f4afb57091a174736093dc54d0aa5 100644 (file)
@@ -239,7 +239,7 @@ variable that is used to hold a temporary value.
 
 Local variables used to store return values should have descriptive name
 like "rc" or "ret". Following the same reasoning the label used as exit
-path should be called "out" or "error".
+path should be called "out".
 
 Variables, type names and function names are
 lower_case_with_underscores.