summaryrefslogtreecommitdiff
path: root/ccode/valaccodewhilestatement.vala
diff options
context:
space:
mode:
Diffstat (limited to 'ccode/valaccodewhilestatement.vala')
-rw-r--r--ccode/valaccodewhilestatement.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/ccode/valaccodewhilestatement.vala b/ccode/valaccodewhilestatement.vala
index 658b77166..3be28b99d 100644
--- a/ccode/valaccodewhilestatement.vala
+++ b/ccode/valaccodewhilestatement.vala
@@ -1,6 +1,6 @@
/* valaccodewhilestatement.vala
*
- * Copyright (C) 2006 Jürg Billeter
+ * Copyright (C) 2006-2007 Jürg Billeter
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -42,7 +42,7 @@ public class Vala.CCodeWhileStatement : CCodeStatement {
}
public override void write (CCodeWriter! writer) {
- writer.write_indent ();
+ writer.write_indent (line);
writer.write_string ("while (");
condition.write (writer);