]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Fix bug in print statement
authorJamie McCracken <jamiemcc gnome org>
Tue, 14 Apr 2009 17:29:09 +0000 (13:29 -0400)
committerJamie McCracken <jamiemcc gnome org>
Tue, 14 Apr 2009 17:32:16 +0000 (13:32 -0400)
vala/valagenieparser.vala

index 3ef7465f321ecd9b8d75fae30671354e326588eb..870a90f6ce9327aaf3ee292f97995ea3b7b0d6c9 100644 (file)
@@ -744,7 +744,7 @@ public class Vala.Genie.Parser : CodeVisitor {
                                        i++;
                                        
                                        if (p_expr != null) { 
-                                               string s = "\\n\"";
+                                               string s = "\"\\n\"";
                                                
                                                if (p_expr is StringLiteral) {
                                                        var s_exp = (StringLiteral) p_expr;