From: Rico Tzschichholz Date: Fri, 17 Jul 2020 10:35:03 +0000 (+0200) Subject: vala: Fix code indentation X-Git-Tag: 0.46.12~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2de28c0c6a685cfde48f3ad337cc16015c9c578c;p=thirdparty%2Fvala.git vala: Fix code indentation --- diff --git a/vala/valabinaryexpression.vala b/vala/valabinaryexpression.vala index b85f6ffce..579256ec0 100644 --- a/vala/valabinaryexpression.vala +++ b/vala/valabinaryexpression.vala @@ -415,8 +415,8 @@ public class Vala.BinaryExpression : Expression { if (left.value_type.compatible (context.analyzer.string_type) && right.value_type.compatible (context.analyzer.string_type)) { // string comparison - } else if (left.value_type is PointerType && right.value_type is PointerType) { - // pointer arithmetic + } else if (left.value_type is PointerType && right.value_type is PointerType) { + // pointer arithmetic } else { DataType resulting_type;