[vala/staging] ccode: Avoid trailing space after #else of CCodeIfSection
- From: Rico Tzschichholz <ricotz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/staging] ccode: Avoid trailing space after #else of CCodeIfSection
- Date: Thu, 24 Jun 2021 12:10:26 +0000 (UTC)
commit c258c1da2e7a6b31aec11645d03a8f0e947eb59d
Author: Rico Tzschichholz <ricotz ubuntu com>
Date: Thu Jun 24 08:49:33 2021 +0200
ccode: Avoid trailing space after #else of CCodeIfSection
In addition to 994b4cb078643d9bb1842fa60ecb69891e1e7b87
ccode/valaccodeifsection.vala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/ccode/valaccodeifsection.vala b/ccode/valaccodeifsection.vala
index c89cc26d5..44c3fe7f7 100644
--- a/ccode/valaccodeifsection.vala
+++ b/ccode/valaccodeifsection.vala
@@ -51,7 +51,7 @@ public class Vala.CCodeIfSection : CCodeFragment {
writer.write_string ("#elif ");
writer.write_string (expression);
} else {
- writer.write_string ("#else ");
+ writer.write_string ("#else");
}
} else if (expression != null) {
writer.write_string ("#if ");
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]